Files
create-computercraft/templates/library/tsconfig.json
2025-06-04 00:45:36 +09:00

20 lines
468 B
JSON

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