19 lines
494 B
JSON
19 lines
494 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/TypeScriptToLua/TypeScriptToLua/master/tsconfig-schema.json",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["ESNext"],
|
|
"moduleResolution": "Node",
|
|
"types": ["@typescript-to-lua/language-extensions"],
|
|
"strict": true,
|
|
"outDir": "build"
|
|
},
|
|
"tstl": {
|
|
"luaTarget": "5.4",
|
|
"noImplicitSelf": true,
|
|
"luaLibImport": "require-minimal",
|
|
"luaBundleEntry": "src/main.ts",
|
|
"luaBundle": "bundle.lua"
|
|
}
|
|
}
|