-
Notifications
You must be signed in to change notification settings - Fork 6
/
tsconfig.json
60 lines (59 loc) · 1.27 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"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",
"@uni-helper/uni-app-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
},
"vueCompilerOptions": {
"plugins": ["@uni-helper/uni-app-types/volar-plugin"]
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"./auto-imports.d.ts",
"./uni-pages.d.ts"
],
"exclude": [
"dist",
"node_modules",
"unpackage"
]
}