Files
OpenFrontIO/tsconfig.json
evanpelle d9e7785608 fbs
2025-12-15 15:38:25 -08:00

36 lines
762 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,
"strictPropertyInitialization": false
},
"include": [
"src/**/*",
"resources/**/*",
"proprietary/**/*",
"src/generated/**/*",
"tests/**/*",
"src/scripts"
],
"exclude": ["node_modules"]
}