12345678910111213141516171819202122232425262728293031323334 |
- {
- "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,
- "types": ["miniprogram-api-typings"],
- "paths": {
- "@vant/weapp/*": ["path/to/node_modules/@vant/weapp/dist/*"]
- },
- "lib": ["ES6"],
- "typeRoots": [
- "./typings"
- ]
- },
- "include": [
- "./**/*.ts"
- ],
- "exclude": [
- "node_modules"
- ]
- }
|