tsconfig.json 658 B

12345678910111213141516171819202122232425
  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. "noErrorTruncation": true,
  18. "strict": true,
  19. "strictPropertyInitialization": true,
  20. "lib": ["ES2020"],
  21. "typeRoots": ["./typings"],
  22. },
  23. "include": ["./**/*.ts"],
  24. "exclude": ["node_modules"]
  25. }