tsconfig.build.json 285 B

123456789101112131415
  1. {
  2. "extends": "./tsconfig.json",
  3. "compilerOptions": {
  4. "module": "esnext",
  5. "jsx": "react",
  6. "noFallthroughCasesInSwitch": true,
  7. "noUnusedLocals": true,
  8. "noUnusedParameters": true,
  9. "strict": true
  10. },
  11. "exclude": [
  12. "node_modules",
  13. "**/*.test.ts"
  14. ]
  15. }