mirror of
https://github.com/amir20/dozzle.git
synced 2026-06-23 04:10:12 +00:00
23 lines
612 B
JSON
23 lines
612 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"],
|
|
},
|
|
"exclude": ["dist", "node_modules", "e2e"],
|
|
}
|