Files
computercraft-vs/tsconfig.json
2025-06-07 23:02:21 +09:00

22 lines
604 B
JSON

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