The production build (vue-tsc -b) failed because tsconfig.node.json had allowImportingTsExtensions without a compatible emit setting, and @types/node was missing for node:url imports in vite.config.ts. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
336 B
JSON
16 lines
336 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"emitDeclarationOnly": true,
|
|
"declaration": true,
|
|
"strict": true,
|
|
"composite": true,
|
|
"skipLibCheck": true,
|
|
"types": ["node"]
|
|
},
|
|
"include": ["vite.config.ts"]
|
|
}
|