forked from zhouruizhe/gmTouringMiniApp
57 lines
1.2 KiB
JSON
57 lines
1.2 KiB
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"jsx": "preserve",
|
|
"lib": [
|
|
"esnext",
|
|
"dom"
|
|
],
|
|
"useDefineForClassFields": true,
|
|
"baseUrl": ".",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"@dcloudio/types",
|
|
"pinia-plugin-persist-uni",
|
|
"uview-plus/types",
|
|
// 微信小程序
|
|
"miniprogram-api-typings",
|
|
// 支付宝小程序
|
|
"@mini-types/alipay",
|
|
// 字节小程序
|
|
"@douyin-microapp/typings",
|
|
// 快手小程序
|
|
"ks-miniprogram-types/global",
|
|
// 百度小程序
|
|
"@types/baidu-app"
|
|
],
|
|
"strict": true,
|
|
"importHelpers": true,
|
|
"sourceMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
|
|
"./auto-imports.d.ts",
|
|
"./uni-pages.d.ts"
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules",
|
|
"unpackage"
|
|
]
|
|
}
|