62bac71ab6
The composite-mode + project-references setup broke `@/*` path alias resolution inside the Docker stage 1 build (worked locally because tsc's incremental cache was warm). Switch to a single tsconfig with `tsc --noEmit && vite build` — Vite handles the alias via its own resolver, so we only use tsc as a type-checker. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
25 lines
588 B
JSON
25 lines
588 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src", "vite.config.ts"]
|
|
}
|