vue3-vite-ts-elementuiplus/tsconfig.json

27 lines
435 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": [
"**/*.d.ts",
"./*.d.ts",
"src/**/*",
"src/**/*.vue"
],
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"allowJs": true,
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
},
"types": [
"element-plus/global"
]
},
"references": [
{
"path": "./tsconfig.config.json"
}
]
}