arch-design-agent-skill-das.../frontend/tsconfig.json
openclaw c18f7c5f76 build: add frontend configuration — Vite, TypeScript, Vue 3
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 17:14:10 +00:00

22 lines
520 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"jsx": "preserve",
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"noEmit": true,
"paths": {
"@/*": ["./src/*"]
},
"baseUrl": "."
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"],
"references": [{ "path": "./tsconfig.node.json" }]
}