Files
computercraft-vs/tsconfig.json
2025-06-07 13:27:06 +09:00

25 lines
579 B
JSON

{
"$schema": "https://raw.githubusercontent.com/TypeScriptToLua/TypeScriptToLua/master/tsconfig-schema.json",
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext"],
"moduleResolution": "Node",
"types": [
"computercraft-ts",
"@typescript-to-lua/language-extensions",
"./types/index"
],
"strict": true,
"declaration": true,
"outDir": "dist/",
"rootDir": "src/",
"noImplicitAny": false
},
"tstl": {
"luaTarget": "JIT",
"buildMode": "library",
"noImplicitSelf": true
},
"include": ["src/**/*"]
}