Picotron-TypeScript/tsconfig.json
2026-01-17 10:09:53 +01:00

20 lines
539 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",
"allowSyntheticDefaultImports": true,
},
"tstl": {
"luaTarget": "5.4",
"noImplicitSelf": true,
"luaLibImport": "require-minimal",
"luaBundleEntry": "src/main.ts",
"luaBundle": "bundle.lua",
},
}