tsconfig.build.json 337 B

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