You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
561 B
29 lines
561 B
{
|
|
"extends": "@vue/tsconfig/tsconfig.json",
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"lib": [
|
|
"esnext",
|
|
"dom"
|
|
],
|
|
"types": [
|
|
"vite/client",
|
|
"@dcloudio/types",
|
|
],
|
|
"typeRoots": [
|
|
"src/**/*.d.ts"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"src/types/*.d.ts"
|
|
]
|
|
}
|