{ "compilerOptions": { "composite": true, "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", "target": "ES2023", "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 }, "include": [ "vite.config.ts" ] }