Conversation
✅ Deploy Preview for eslint-code-explorer ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
DMartens
reviewed
Mar 24, 2026
Contributor
|
Other than the pre-existing error, changes LGTM. |
DMartens
approved these changes
Mar 24, 2026
amareshsm
approved these changes
Mar 25, 2026
Member
amareshsm
left a comment
There was a problem hiding this comment.
overall it LGTM.
Vite 8 introduces an experimental resolve.tsconfigPaths option that automatically reads path mappings from your tsconfig.json, eliminating the need to manually configure resolve.alias.
resolve: {
tsconfigPaths: true
}
it’s still marked as experimental so will take it up later.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Prerequisites checklist
AI acknowledgment
What is the purpose of this pull request?
This PR migrates the project to Vite 8 and updates the React plugin setup to the Vite 8-compatible
@vitejs/plugin-reactv6 configuration. It also cleans up the related build config changes required by Rolldown/Oxc and fixes the Code Path regression that surfaced during the migration.In local testing, production builds are about 6x faster and the generated build output is about 5% smaller than with the previous Vite 7 setup.
What changes did you make? (Give an overview)
viteto8.0.1and@vitejs/plugin-reactto6.0.1.@rolldown/plugin-babeland@babel/core, and migrated the React Compiler setup fromreact({ babel: ... })toreact()plusbabel({ presets: [reactCompilerPreset()] }).manualChunkssetup withcodeSplitting.groups.use-debounced-effectdependency in the Code Path view with a local debounced effect to avoid the runtime interop error introduced by the tooling migration.Related Issues
Is there anything you'd like reviewers to focus on?