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
| {
| "compilerOptions": {
| "strictNullChecks": true,
| "noImplicitAny": true,
| "module": "CommonJS",
| "target": "ES2020",
| "allowJs": true,
| "allowSyntheticDefaultImports": true,
| "esModuleInterop": true,
| "experimentalDecorators": true,
| "noImplicitThis": true,
| "noImplicitReturns": true,
| "alwaysStrict": true,
| "noFallthroughCasesInSwitch": true,
| "noUnusedLocals": true,
| "noUnusedParameters": true,
| "strict": true,
| "strictPropertyInitialization": true,
| "typeRoots": [
| "./typings"
| ],
| "baseUrl": ".",
| "types": ["miniprogram-api-typings"],
| "paths": {
| "@vant/weapp/*": ["path/to/node_modules/@vant/weapp/dist/*"]
| },
| "lib": ["ES6"]
| },
| "include": [
| "./**/*.ts"
| ],
| "exclude": [
| "node_modules"
| ]
| }
|
|