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
| {
| "compilerOptions": {
| "composite": true,
| "skipLibCheck": true,
| "module": "ESNext",
| "moduleResolution": "Node",
| "resolveJsonModule": true,
| "noImplicitThis": true,
| "allowSyntheticDefaultImports": true,
| "allowJs": true,
| "sourceMap": true,
| "baseUrl": ".",
| "paths": {
| "@/*": ["./src/*"]
| },
| "outDir": "dist",
| "lib": ["esnext", "dom"],
| "types": [
| "@dcloudio/types",
| "@uni-helper/uni-types",
| "@types/wechat-miniprogram",
| "wot-design-uni/global.d.ts",
| "z-paging/types",
| "./src/typings.d.ts"
| ]
| },
| "vueCompilerOptions": {
| "plugins": ["@uni-helper/uni-types/volar-plugin"]
| },
| "exclude": ["node_modules"],
| "include": [
| "src/**/*.ts",
| "src/**/*.js",
| "src/**/*.d.ts",
| "src/**/*.tsx",
| "src/**/*.jsx",
| "src/**/*.vue",
| "src/**/*.json"
| ]
| }
|
|