mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
// {
|
|
// "compilerOptions": {
|
|
// "baseUrl": ".",
|
|
// "target": "ESNext",
|
|
// "useDefineForClassFields": true,
|
|
// "module": "ESNext",
|
|
// "moduleResolution": "Node",
|
|
// "strict": true,
|
|
// "jsx": "preserve",
|
|
// "sourceMap": true,
|
|
// "resolveJsonModule": true,
|
|
// "isolatedModules": true,
|
|
// "esModuleInterop": true,
|
|
// "lib": ["ESNext", "DOM"],
|
|
// "skipLibCheck": true,
|
|
// "paths": {
|
|
// "~/*": ["./*"],
|
|
// "@/*": ["./src/*"]
|
|
// },
|
|
// "types": ["node", "vite/client", "naive-ui/volar"]
|
|
// }
|
|
// // "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
|
|
// }
|
|
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"lib": ["DOM", "ESNext"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"jsx": "preserve",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"paths": {
|
|
"~/*": ["./*"],
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"types": ["node", "naive-ui/volar"]
|
|
},
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|