forgotten-lands-cd2025/tsconfig.json
2024-04-15 02:22:20 -04:00

34 lines
705 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": "source/",
"sourceMap": false,
"downlevelIteration": true
},
"include": [
"source/**/*.ts"
],
"exclude": [
"mods/**/*.lua",
"mods/**/*.mts",
],
"tstl": {
"luaTarget": "JIT",
"noHeader": true,
"noImplicitSelf": true,
// "sourceMapTraceback": true,
"luaLibImport": "inline"
}
}