29 lines
671 B
JSON
29 lines
671 B
JSON
|
{
|
|||
|
"extends": "@vue/tsconfig/tsconfig.json",
|
|||
|
"compilerOptions": {
|
|||
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|||
|
"baseUrl": ".",
|
|||
|
"paths": {
|
|||
|
"@/*": ["./src/*"]
|
|||
|
},
|
|||
|
"types": [
|
|||
|
"@dcloudio/types",
|
|||
|
"@mini-types/alipay",
|
|||
|
"miniprogram-api-typings",
|
|||
|
"@uni-helper/uni-types"
|
|||
|
],
|
|||
|
"noImplicitAny": false,
|
|||
|
"sourceMap": true
|
|||
|
},
|
|||
|
"vueCompilerOptions": {
|
|||
|
// 调整 Volar(Vue 语言服务工具)解析行为,用于为 uni-app 组件提供 TypeScript 类型
|
|||
|
"plugins": ["@uni-helper/uni-types/volar-plugin"]
|
|||
|
},
|
|||
|
"include": [
|
|||
|
"src/**/*.ts",
|
|||
|
"src/**/*.d.ts",
|
|||
|
"src/**/*.tsx",
|
|||
|
"src/**/*.vue"
|
|||
|
]
|
|||
|
}
|