mirror of
https://github.com/djdevin/recflare.git
synced 2026-09-08 14:41:28 -07:00
11 lines
355 B
JSON
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"]
|
|
}
|
|
}
|