Files
recflare/apps/www/tsconfig.json
Devin Zuczek f0a273a3c4 wip web
2026-07-09 00:56:50 -04:00

11 lines
355 B
JSON

{
"extends": "@repo/typescript-config/workers.json",
"compilerOptions": {
// This is the repo's first frontend worker: the React client code needs the
// automatic JSX runtime and the DOM libs. The worker code itself uses no DOM
// globals, so widening `lib` here is harmless.
"jsx": "react-jsx",
"lib": ["ESNext", "DOM", "DOM.Iterable"]
}
}