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.

24 lines
641 B

2 years ago
{
"extends": "@vue/tsconfig/tsconfig.json",
2 years ago
"compilerOptions": {
"allowJs": true,
2 years ago
"sourceMap": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
2 years ago
"lib": ["esnext", "dom"],
11 months ago
"types": [
"@dcloudio/types",
"miniprogram-api-typings",
"@uni-helper/uni-app-types",
"@uni-helper/uni-ui-types"
]
2 years ago
},
"vueCompilerOptions": {
// experimentalRuntimeMode 已废弃,现调整为 nativeTags请升级 Volar 插件至最新版本
"nativeTags": ["block", "component", "template", "slot"]
},
2 years ago
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
}