-
-
Notifications
You must be signed in to change notification settings - Fork 10.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix virtual module type to properly handle optional properties #13327
base: dev
Are you sure you want to change the base?
Conversation
🦋 Changeset detectedLatest commit: 4d600f5 The changes in this PR will be included in the next version bump. This PR includes changesets to release 11 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Hi @smorimoto, Welcome, and thank you for contributing to React Router! Before we consider your pull request, we ask that you sign our Contributor License Agreement (CLA). We require this only once. You may review the CLA and sign it by adding your name to contributors.yml. Once the CLA is signed, the If you have already signed the CLA and received this response in error, or if you have any questions, please contact us at [email protected]. Thanks! - The Remix team |
Thank you for signing the Contributor License Agreement. Let's get this merged! 🥳 |
This PR will also fix this issue: #13152 (comment) |
8648133
to
8b693bf
Compare
virtual:react-router/server-build
8b693bf
to
a5ca825
Compare
@timdorr Thanks a lot for clicking accept for the GitHub Actions workflow, but the previous commit was not a complete fix. Sorry! @markdalgleish I think you will be interested in this, but maybe this change is not to your liking... (I hope you don't hate it!) |
Off-topic: I believe both contributors and you all could benefit from slightly relaxing the rules around GitHub Actions :) https://github.com/organizations/remix-run/settings/actions ![]() |
🥲 |
Ready to go! |
a5ca825
to
745a4c0
Compare
Can someone review this? |
The virtual module `virtual:react-router/server-build` now deliberately implements CommonJS `export =` syntax to correctly support optional properties in the `ServerBuild` type, ensuring proper TypeScript compatibility with `exactOptionalPropertyTypes`. Signed-off-by: Sora Morimoto <[email protected]>
Signed-off-by: Sora Morimoto <[email protected]>
745a4c0
to
017b8cb
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@smorimoto Thanks for the PR!
After pulling down your PR and trying it out, I noticed that this introduces a different issue which is that the virtual module type now has a default
property that doesn't exist in the runtime code.
However, I discovered another solution to the problem that avoids this. By adding | undefined
to the types for the optional ServerBuild
properties, I'm able to keep your new test passing.
I've pushed an update to your PR with the new implementation but keeping your test case so you still get the credit for helping out here. Hope that's ok! Let me know if this solution looks good from your side and we can get this merged in.
@@ -152,7 +152,7 @@ function register(ctx: Context) { | |||
|
|||
const virtual = ts` | |||
declare module "virtual:react-router/server-build" { | |||
import { ServerBuild } from "react-router"; | |||
import type { ServerBuild } from "react-router"; import { ServerBuild } from "react-router"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import type { ServerBuild } from "react-router"; import { ServerBuild } from "react-router"; | |
import type { ServerBuild } from "react-router"; |
@markdalgleish I thought exporting never might be the solution, but that does not seem to work... declare module '...' {
...
export default never; // <- does not work...
export default undefined // <- same...
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change is technically required for compatibility with exactOptionalPropertyTypes
. That said, I don't know why the current test does not catch this issue correctly...
basename?: string; | ||
// `| undefined` is required to ensure compatibility with TypeScript's | ||
// `exactOptionalPropertyTypes` option | ||
basename?: string | undefined; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
basename?: string | undefined; | |
basename: string | undefined; |
unstable_getCriticalCss?: (args: { | ||
pathname: string; | ||
}) => OptionalCriticalCss | Promise<OptionalCriticalCss>; | ||
unstable_getCriticalCss?: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unstable_getCriticalCss?: | |
unstable_getCriticalCss: |
@markdalgleish I'm not familiar with Vite's virtual module convention, but on the contrary, is it difficult to publish the default export instead? |
Overview
This PR fixes the TypeScript type definition for the virtual module
virtual:react-router/server-build
to properly handle optional properties in theServerBuild
interface. The change moves from named exports to a CommonJS-styleexport =
syntax to ensure better TypeScript compatibility, especially withexactOptionalPropertyTypes
enabled.Potential Issues or Risks
Conclusion
This PR provides a solid solution to type compatibility issues with optional properties in the
ServerBuild
interface. The approach is well-reasoned and properly tested. The change should improve type-checking accuracy, especially in projects using strict TypeScript configurations.