tsconfig.json 749 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "compilerOptions": {
  3. "strictNullChecks": true,
  4. "noImplicitAny": true,
  5. "module": "CommonJS",
  6. "target": "ES2020",
  7. "allowJs": true,
  8. "allowSyntheticDefaultImports": true,
  9. "esModuleInterop": true,
  10. "experimentalDecorators": true,
  11. "noImplicitThis": true,
  12. "noImplicitReturns": true,
  13. "alwaysStrict": true,
  14. "noFallthroughCasesInSwitch": true,
  15. "noUnusedLocals": true,
  16. "noUnusedParameters": true,
  17. "strict": true,
  18. "strictPropertyInitialization": true,
  19. "lib": ["ES2020"],
  20. "typeRoots": [
  21. "./typings"
  22. ],
  23. "paths": {
  24. "@vant/weapp/*": ["D:/zedu_wxmini/node_modules/@vant/weapp/dist/*"]
  25. }
  26. },
  27. "include": [
  28. "./**/*.ts"
  29. ],
  30. "exclude": [
  31. "node_modules"
  32. ]
  33. }