mirror of
https://gitee.com/honghuangdc/soybean-admin-element-plus.git
synced 2026-06-19 04:48:00 +00:00
31 lines
734 B
JSON
31 lines
734 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"lib": ["DOM", "ESNext"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "vue",
|
|
"moduleResolution": "node",
|
|
"isolatedModules": true,
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"types": [
|
|
"vite/client",
|
|
"node",
|
|
"unplugin-icons/types/vue",
|
|
"element-plus/global.d.ts"
|
|
]
|
|
},
|
|
"include": ["./**/*.ts", "./**/*.tsx", "./**/*.vue"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|