{ // The build-tool configs run in Node, not the browser: they need node types and must NOT be // checked against the app's DOM lib. Split out because tsconfig.json's `include` is ["src"], // so until now nothing type-checked these files at all (R2 / C-4.5). `npm run typecheck` // runs this project alongside src and e2e. "compilerOptions": { // composite: required to be the target of tsconfig.json's `references` (which is what makes // editors check these files under THIS config instead of an inferred one). A composite project // may not disable emit (TS6310), so it emits declarations only, into node_modules — nothing // lands in the repo and nothing reaches the bundle. Hence `tsc -p` without --noEmit below. "composite": true, "declaration": true, "emitDeclarationOnly": true, "outDir": "./node_modules/.tmp/tsconfig-node", "tsBuildInfoFile": "./node_modules/.tmp/tsconfig-node/.tsbuildinfo", "target": "ES2022", "module": "ESNext", "moduleResolution": "bundler", "lib": ["ES2022"], "types": ["node"], "strict": true, "skipLibCheck": true, "noUnusedLocals": true, "noUnusedParameters": true, "resolveJsonModule": true }, "include": ["vite.config.ts", "vitest.config.ts"] }