mirror of
https://gitee.com/xiangheng/x_admin.git
synced 2025-12-24 08:12:55 +08:00
26 lines
570 B
JSON
26 lines
570 B
JSON
{
|
|
"include": [
|
|
"global.d.ts",
|
|
"src/**/*",
|
|
"src/**/*.ts",
|
|
"src/**/*.vue",
|
|
"components.d.ts",
|
|
"auto-imports.d.ts",
|
|
"typings/**/*.d.ts"
|
|
],
|
|
"exclude": ["dist"],
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"moduleResolution": "Bundler",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"outDir": "./dist",
|
|
"isolatedModules": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"types": ["node", "element-plus/global"]
|
|
}
|
|
}
|