arch-design-agent-skill-das.../frontend/tsconfig.node.json
openclaw d4b26a5971 fix(build): resolve vue-tsc -b build errors — add @types/node, fix tsconfig emit settings
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>
2026-03-23 17:29:43 +00:00

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"]
}