When trying to generate a production build in a Vite react app, we get the following error: ``` 'default' is not exported by react/jsx-runtime, imported by node_modules/@preact/signals-react/dist/signals.module.js ``` It appears this error originates from these lines https://github.com/preactjs/signals/blob/main/packages/react/src/index.ts#L9-L10, where it's using default imports for the two runtimes, while the `jsx-runtime` package appears to only provide named exports?