2025-12-03 21:56:50 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"useDefineForClassFields": true,
|
2025-12-13 02:34:34 +00:00
|
|
|
"lib": [
|
|
|
|
|
"ES2020",
|
|
|
|
|
"DOM",
|
|
|
|
|
"DOM.Iterable",
|
|
|
|
|
"WebWorker"
|
|
|
|
|
],
|
2025-12-03 21:56:50 +00:00
|
|
|
"module": "ESNext",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"jsx": "react-jsx",
|
2025-12-25 14:04:01 +00:00
|
|
|
/* Strict Type Checking */
|
2025-12-03 21:56:50 +00:00
|
|
|
"strict": true,
|
2025-12-25 14:04:01 +00:00
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
|
"noImplicitThis": true,
|
|
|
|
|
"alwaysStrict": true,
|
2025-12-03 21:56:50 +00:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
2025-12-25 14:04:01 +00:00
|
|
|
"noImplicitReturns": true,
|
2025-12-03 21:56:50 +00:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2025-12-25 14:04:01 +00:00
|
|
|
// "noUncheckedIndexedAccess": true, // TODO: Enable progressively - requires fixing 200+ array/object access checks
|
|
|
|
|
"noImplicitOverride": true,
|
2025-12-03 21:56:50 +00:00
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
2025-12-13 02:34:34 +00:00
|
|
|
"@/*": [
|
|
|
|
|
"./src/*"
|
|
|
|
|
]
|
2025-12-03 21:56:50 +00:00
|
|
|
},
|
2025-12-13 02:34:34 +00:00
|
|
|
"types": [
|
|
|
|
|
"vite/client"
|
|
|
|
|
]
|
2025-12-03 21:56:50 +00:00
|
|
|
},
|
2025-12-13 02:34:34 +00:00
|
|
|
"include": [
|
|
|
|
|
"src"
|
|
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"src/**/*.test.ts",
|
|
|
|
|
"src/**/*.test.tsx",
|
2025-12-28 15:07:02 +00:00
|
|
|
"src/**/*.example.ts",
|
2025-12-13 02:34:34 +00:00
|
|
|
"src/test/**/*",
|
|
|
|
|
"src/mocks/**/*"
|
|
|
|
|
],
|
|
|
|
|
"references": [
|
|
|
|
|
{
|
|
|
|
|
"path": "./tsconfig.node.json"
|
|
|
|
|
}
|
|
|
|
|
]
|
2025-12-03 21:56:50 +00:00
|
|
|
}
|