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.
38 lines
632 B
38 lines
632 B
|
5 days ago
|
{
|
||
|
|
"extends": "@vue/tsconfig/tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"sourceMap": true,
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@/*": [
|
||
|
|
"./src/*"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"lib": [
|
||
|
|
"esnext",
|
||
|
|
"dom"
|
||
|
|
],
|
||
|
|
"types": [
|
||
|
|
"@dcloudio/types",
|
||
|
|
"@types/wechat-miniprogram",
|
||
|
|
"@uni-helper/uni-app-types",
|
||
|
|
"uview-plus/types"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"vueCompilerOptions": {
|
||
|
|
"nativeTags": [
|
||
|
|
"block",
|
||
|
|
"component",
|
||
|
|
"template",
|
||
|
|
"slot"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"src/**/*.ts",
|
||
|
|
"src/**/*.d.ts",
|
||
|
|
"src/**/*.tsx",
|
||
|
|
"src/**/*.vue",
|
||
|
|
"types/**/*.d.ts",
|
||
|
|
"types/**/*.ts"
|
||
|
|
]
|
||
|
|
}
|