tsconfig.base.client.json 362 B

1234567891011
  1. {
  2. // Client-side compiler shape shared by tsconfig.client.json and every
  3. // packages/client/* package: browser lib surface, 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. "types": []
  10. }
  11. }