mirror of
https://github.com/amir20/dozzle.git
synced 2026-06-22 20:00:11 +00:00
de368a1d97
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
29 lines
673 B
JSON
29 lines
673 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"lib": ["DOM", "ESNext"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"incremental": false,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"paths": {
|
|
"@/*": ["./assets/*"]
|
|
},
|
|
"jsx": "preserve",
|
|
"types": [
|
|
"vitest",
|
|
"vite/client",
|
|
"unplugin-vue-macros/macros-global",
|
|
"vite-plugin-vue-layouts/client",
|
|
"unplugin-icons/types/vue"
|
|
]
|
|
},
|
|
"exclude": ["dist", "node_modules", "e2e"]
|
|
}
|