21 lines
538 B
JSON
21 lines
538 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"],
|
|
"strict": true,
|
|
"declaration": true,
|
|
"outDir": "dist/",
|
|
"rootDir": "src/",
|
|
"noImplicitAny": false
|
|
},
|
|
"tstl": {
|
|
"luaTarget": "JIT",
|
|
"buildMode": "library",
|
|
"noImplicitSelf": true
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|