You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/configuration.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,8 @@ To customize transpilation behavior we add a new group of options to the `tsconf
26
26
|`luaBundle`| File path (relative to the `tsconfig.json`) | Will bundle all output lua files into a single bundle file. Requires **luaBundleEntry** to be set! |
27
27
|`luaBundleEntry`| File path (relative to the `tsconfig.json`) | This should be the name/path of the TS file in your project that will serve as entry point to the bundled code. |
28
28
|`luaPlugins`|`Array<{ name: string; import?: string }>`| List of [TypeScriptToLua plugins](api/plugins.md). |
29
+
|`buildMode`|`"default"`, `"library"` (default: `"library"`) | Use `buildMode: "library"` to build [publishable library packages](publishing-modules.md). |
30
+
|`tstlVerbose`|`true`, `false` (default: `false`) | Output additional logging when performing a tstl build, to help diagnose issues. |
0 commit comments