forgotten-lands-cd2025/tsconfig.json
2023-11-14 21:44:07 -05:00

29 lines
671 B
JSON

{
"$schema": "https://raw.githubusercontent.com/TypeScriptToLua/TypeScriptToLua/master/tsconfig-schema.json",
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext"],
"module": "System",
"moduleResolution": "Node",
"types": ["lua-types/jit", "./minetest-api"],
"strict": true,
"outDir": "mods/",
"rootDir": "mods/",
"sourceMap": false,
"downlevelIteration": true
},
"include": [
"mods/**/*.ts"
],
"exclude": [
"mods/**/*.lua",
"mods/**/*.mts",
],
"tstl": {
"luaTarget": "JIT",
"noHeader": true,
"noImplicitSelf": true,
// "sourceMapTraceback": true,
"luaLibImport": "inline"
}
}