Files
computercraft-ts/tsconfig.json
2025-06-07 12:21:17 +09:00

21 lines
575 B
JSON

{
"$schema": "https://raw.githubusercontent.com/TypeScriptToLua/TypeScriptToLua/master/tsconfig-schema.json",
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext"],
"moduleResolution": "Node",
"strict": true,
"plugins": [{ "name": "typescript-tstl-plugin" }],
"outDir": "dist",
"types": ["./types/index", "@typescript-to-lua/language-extensions"],
"noImplicitAny": false
},
"tstl": {
"luaTarget": "5.4",
"noHeader": true,
"luaBundle": "bundle.lua",
"luaBundleEntry": "src/main.ts"
},
"include": ["src/**/*"]
}