tsconfig.json 494 B

12345678910111213141516171819202122232425
  1. {
  2. "compilerOptions": {
  3. "noFallthroughCasesInSwitch": true,
  4. "noUnusedParameters": true,
  5. "noImplicitReturns": true,
  6. "noUnusedLocals": true,
  7. "noImplicitAny": true,
  8. "target": "esnext",
  9. "module": "esnext",
  10. "strict": true,
  11. "strictNullChecks": true,
  12. "strictBindCallApply": true,
  13. "strictFunctionTypes": true,
  14. "strictPropertyInitialization": true
  15. },
  16. "include": [
  17. "ts/**/*"
  18. ],
  19. "exclude": [
  20. "dist",
  21. "node_modules",
  22. "plugins"
  23. ]
  24. }