veza/apps/web/tsconfig.node.json

37 lines
1 KiB
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"composite": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2023",
2025-12-13 02:34:34 +00:00
"lib": [
"ES2023"
],
"module": "ESNext",
"skipLibCheck": false,
/* Bundler mode */
"moduleResolution": "bundler",
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": false,
/* Strict Type Checking */
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
// "noUncheckedIndexedAccess": true, // TODO: Enable progressively - requires fixing 200+ array/object access checks
"noImplicitOverride": true,
"erasableSyntaxOnly": true,
"noUncheckedSideEffectImports": true
},
2025-12-13 02:34:34 +00:00
"include": [
"vite.config.ts"
]
}