tsconfig.json 692 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": [
  20. "ES2020"
  21. ],
  22. "typeRoots": [
  23. "./typings"
  24. ],
  25. "skipLibCheck": true
  26. },
  27. "include": [
  28. "./**/*.ts"
  29. ],
  30. "exclude": [
  31. "node_modules"
  32. ]
  33. }