perf(CLI): change default config loader from jiti to auto#6406
Merged
chenjiahan merged 2 commits intomainfrom Oct 22, 2025
Merged
perf(CLI): change default config loader from jiti to auto#6406chenjiahan merged 2 commits intomainfrom
chenjiahan merged 2 commits intomainfrom
Conversation
✅ Deploy Preview for rsbuild ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR updates the default config loader from jiti to auto for improved performance. The auto loader attempts to use Node.js native TypeScript support first before falling back to jiti, providing better performance when native support is available while maintaining backward compatibility.
Key Changes:
- Changed the default CLI
--config-loaderoption from'jiti'to'auto' - Updated documentation to reflect
autoas the default loader - Refactored config loading logic to wrap
jitifallback in proper conditional check
Reviewed Changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| packages/core/src/cli/commands.ts | Changed default config loader from 'jiti' to 'auto' |
| packages/core/src/loadConfig.ts | Refactored jiti fallback logic and added Boolean wrapper for useNative flag |
| website/docs/en/guide/configuration/rsbuild.mdx | Updated English documentation to list 'auto' as default loader |
| website/docs/zh/guide/configuration/rsbuild.mdx | Updated Chinese documentation to list 'auto' as default loader |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
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.

Summary
Update the default config loader to
'auto'which first attempts to use Node.js native loader before falling back tojiti. This provides better performance when native TypeScript support is available while maintaining compatibility.Checklist