tsconfig.json 654 B

123456789101112131415161718192021222324252627282930
  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. },
  24. "include": [
  25. "./**/*.ts"
  26. ],
  27. "exclude": [
  28. "node_modules"
  29. ]
  30. }