28 lines
628 B
JSON
28 lines
628 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"lib": ["DOM", "ESNext"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "preserve",
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"types": [
|
|
"vite/client",
|
|
"vue/ref-macros",
|
|
"vite-plugin-pages/client",
|
|
"vite-plugin-vue-layouts/client"
|
|
],
|
|
"paths": {
|
|
"~/*": ["src/*"]
|
|
}
|
|
},
|
|
"exclude": ["dist", "node_modules", "cypress"]
|
|
}
|