mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-24 19:23:53 +00:00
17 lines
389 B
JSON
17 lines
389 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2019",
|
|
"module": "commonjs",
|
|
"importsNotUsedAsValues": "error",
|
|
"strict": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"noImplicitAny": false,
|
|
"outDir": "./build",
|
|
},
|
|
}
|