Skip to content

Commit 449784b

Browse files
authored
Add buildMode and tstlVerbose to configuration page (#62)
* Add buildMode and tstlVerbose to configuration page * fix prettier
1 parent fb23b40 commit 449784b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

docs/configuration.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ To customize transpilation behavior we add a new group of options to the `tsconf
2626
| `luaBundle` | File path (relative to the `tsconfig.json`) | Will bundle all output lua files into a single bundle file. Requires **luaBundleEntry** to be set! |
2727
| `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. |
2828
| `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. |
2931

3032
## Standard options
3133

0 commit comments

Comments
 (0)