123456789101112131415161718192021222324252627282930313233 |
- {
- "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,
- "lib": ["ES2020"],
- "typeRoots": [
- "./typings"
- ],
- "paths": {
- "@vant/weapp/*": ["D:/zedu_wxmini/node_modules/@vant/weapp/dist/*"]
- }
- },
- "include": [
- "./**/*.ts"
- ],
- "exclude": [
- "node_modules"
- ]
- }
|