mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-10-02 22:30:02 +08:00
31 lines
686 B
JSON
31 lines
686 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "vue",
|
|
"lib": ["ESNext", "DOM"],
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"node",
|
|
"vite/client",
|
|
"naive-ui/volar",
|
|
"unplugin-icons/types/vue"
|
|
],
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": ["node_modules", "eslint.config.js"]
|
|
}
|