tsconfig.json 569 B

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