mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-21 23:41:59 +00:00
34 lines
691 B
JSON
34 lines
691 B
JSON
// https://www.typescriptlang.org/tsconfig/
|
|
{
|
|
"compilerOptions": {
|
|
// Language and Environment
|
|
"target": "ES2020",
|
|
|
|
// Modules
|
|
"module": "ESNext",
|
|
"rootDir": ".",
|
|
"moduleResolution": "node",
|
|
|
|
// Emit
|
|
"sourceMap": true,
|
|
|
|
// Type Checking
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowUnusedLabels": false,
|
|
"alwaysStrict": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"strictNullChecks": true,
|
|
"useDefineForClassFields": false
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"resources/**/*",
|
|
"generated/**/*",
|
|
"tests/**/*",
|
|
"src/scripts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|