Files
babyboucher 4f20d2b332 TypeScript update to 6.0.3 (#3806)
## Description:

Updating TypeScript to 6.0.3.
Updating TypeScript-eslint to 8.59.1 for TS6 support.
Concurrently needed to get updated as well to remove deprecated warning.

Most things deleted are now just defaults.

## 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

## Please put your Discord username so you can be contacted if a bug or
regression is found:

Babyboucher
2026-04-30 15:49:24 -06:00

36 lines
819 B
JSON

// https://www.typescriptlang.org/tsconfig/
{
"compilerOptions": {
// Language and Environment
"target": "ES2020",
// Modules
"module": "ESNext",
"moduleResolution": "bundler",
"paths": {
"resources/*": ["./resources/*"],
"src/*": ["./src/*"]
},
// Emit
"sourceMap": true,
// Type Checking
"allowUnusedLabels": false,
"experimentalDecorators": true,
"resolveJsonModule": true,
"strictNullChecks": true,
"useDefineForClassFields": false,
"strictPropertyInitialization": false,
"skipLibCheck": true,
"types": ["vitest/globals", "node"]
},
"include": [
"src/**/*",
"resources/**/*",
"proprietary/**/*",
"generated/**/*",
"tests/**/*",
"src/scripts",
"vite.config.ts"
],
"exclude": ["node_modules"]
}