mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-04 03:55:01 +08:00
26 lines
641 B
JSON
26 lines
641 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "vue",
|
|
"lib": ["ESNext", "DOM"],
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"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", "dist"]
|
|
}
|