tsconfig.json 704 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "compilerOptions": {
  3. "strictNullChecks": true,
  4. "noImplicitAny": true,
  5. "module": "CommonJS",
  6. "target": "ES5",
  7. "allowJs": false,
  8. "experimentalDecorators": true,
  9. "noImplicitThis": true,
  10. "noImplicitReturns": true,
  11. "alwaysStrict": true,
  12. "inlineSourceMap": true,
  13. "inlineSources": true,
  14. "noFallthroughCasesInSwitch": true,
  15. "noUnusedLocals": true,
  16. "noUnusedParameters": true,
  17. "strict": true,
  18. "removeComments": true,
  19. "pretty": true,
  20. "strictPropertyInitialization": true,
  21. "typeRoots": [
  22. "typings"
  23. ]
  24. },
  25. "include": [
  26. "./**/*.ts"
  27. ],
  28. "exclude": [
  29. "node_modules",
  30. "miniprogram_dist",
  31. "**/*.spec.ts"
  32. ]
  33. }