Files
dozzle/tsconfig.json
T
Amir Raminfar de368a1d97 refactor(ui): tighten TypeScript inference, drop redundant casts (#4779)
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-04 15:25:31 +00:00

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