mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-21 14:20:45 +00:00
36 lines
761 B
JSON
36 lines
761 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,
|
|
"noImplicitAny": true,
|
|
"resolveJsonModule": true,
|
|
"strictNullChecks": true,
|
|
"useDefineForClassFields": false,
|
|
"strictPropertyInitialization": false
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"resources/**/*",
|
|
"generated/**/*",
|
|
"tests/**/*",
|
|
"src/scripts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|