tstl-bundle-require-lualib
v1.0.0
Published
Require external LuaLib bundle when bundling TypeScriptToLua
Readme
TSTL Bundle Require LuaLib
Require external lualib_bundle instead of including it in the code when bundling with TypeScriptToLua.
Example
tsconfig.json
{
"compilerOptions": { /* ... */ },
"tstl": {
"luaBundle": "Main.lua",
"luaBundleEntry": "src/Main.ts",
"luaPlugins": [
{
"name": "tstl-bundle-require-lualib",
// optional, custom name for lualib bundle to require
"luaLibName": "custom_lualib_bundle"
}
]
}
}