2025-12-03 21:56:50 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"skipLibCheck": false,
|
|
|
|
|
|
|
|
|
|
/* Bundler mode */
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
|
"moduleDetection": "force",
|
|
|
|
|
"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,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"strictNullChecks": true,
|
2025-12-25 14:04:01 +00:00
|
|
|
"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,
|
|
|
|
|
"erasableSyntaxOnly": true,
|
2025-12-03 21:56:50 +00:00
|
|
|
"noUncheckedSideEffectImports": true,
|
|
|
|
|
|
|
|
|
|
/* Path mapping */
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["./src/*"],
|
|
|
|
|
"@components/*": ["./src/components/*"],
|
|
|
|
|
"@features/*": ["./src/features/*"],
|
|
|
|
|
"@services/*": ["./src/services/*"],
|
|
|
|
|
"@hooks/*": ["./src/hooks/*"],
|
|
|
|
|
"@utils/*": ["./src/utils/*"],
|
|
|
|
|
"@types/*": ["./src/types/*"]
|
|
|
|
|
},
|
|
|
|
|
"noImplicitReturns": true
|
|
|
|
|
},
|
2025-12-28 15:07:02 +00:00
|
|
|
"include": ["src"],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"src/**/*.test.ts",
|
|
|
|
|
"src/**/*.test.tsx",
|
|
|
|
|
"src/**/*.example.ts",
|
|
|
|
|
"src/test/**/*",
|
|
|
|
|
"src/mocks/**/*"
|
|
|
|
|
]
|
2025-12-03 21:56:50 +00:00
|
|
|
}
|