tsconfig.base.client.json 451 B

123456789101112
  1. {
  2. // Client-side compiler shape shared by tsconfig.client.json and every
  3. // packages/client/* package: browser library API, React JSX, no ambient
  4. // node types (packages that need them override locally).
  5. "extends": "./tsconfig.base.json",
  6. "compilerOptions": {
  7. "jsx": "react-jsx",
  8. "lib": ["ES2024", "DOM", "DOM.Iterable"],
  9. "typeRoots": ["./scripts/types", "./node_modules/@types"],
  10. "types": ["client-build-environment"]
  11. }
  12. }