Files
Scott Anderson 51519b0b9d Enable strictPropertyInitialization (#1909)
## Description:

Enable the tsconfig option `strictPropertyInitialization`.

Fixes #1907

## Please complete the following:

- [x] I have added screenshots for all UI updates
- [x] I process any text displayed to the user through translateText()
and I've added it to the en.json file
- [x] I have added relevant tests to the test directory
- [x] I confirm I have thoroughly tested these changes and take full
responsibility for any bugs introduced
2025-08-23 19:21:40 -04:00

35 lines
711 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,
"strict": true,
"strictNullChecks": true,
"useDefineForClassFields": false
},
"include": [
"src/**/*",
"resources/**/*",
"generated/**/*",
"tests/**/*",
"src/scripts"
],
"exclude": ["node_modules"]
}