Motivation
The React Compiler has been ported to Rust and is exposed through builtin:swc-loader as jsc.transform.reactCompiler since Rspack 2.1. Rspack measures the Rust implementation at 7–13x the speed of babel-plugin-react-compiler.
Re.Pack has no React Compiler support of any kind today — no mention in packages/, website/src or the templates. Users who want it add babel-plugin-react-compiler to their own babel.config.js, and because of how babel-swc-loader partitions work, that plugin then runs on the Babel side for every component file in the app.
Part of #1414 (Roadmap to V6), which lists "rust react compiler support" as a deliverable. Adjacent to #1422 (SWC setup rework) — both touch getSwcLoaderOptions, and the config surface should be designed once.
Why it lands on the Babel side today
babelSwcLoader reads the project's Babel config, partitions the detected plugins into "SWC can do this" vs "Babel must do this", then runs Babel with excludePlugins: supportedSwcTransforms followed by SWC:
const { includedSwcTransforms, supportedSwcTransforms, swcConfig } =
partitionTransforms(this.resourcePath, detectedBabelTransforms);
const babelResult = await transform(source, baseBabelConfig, {
excludePlugins: supportedSwcTransforms,
...
});
babel-plugin-react-compiler appears in none of SWC_SUPPORTED_NORMAL_RULES / SWC_SUPPORTED_CONFIGURABLE_RULES / SWC_SUPPORTED_CUSTOM_RULES in swc.ts, so it is never excluded and always runs through Babel. React Compiler is by far the most expensive Babel plugin in a typical RN app's config — it does whole-function dataflow analysis on every component. Mapping it into jsc.transform.reactCompiler is the single biggest remaining Babel offload available to us.
Verified behaviour
All of the below was checked against @rspack/core@2.1.6 via experiments.swc.transformSync.
It works, and composes with the RN-shaped config we already emit:
| config |
result |
reactCompiler: true |
memoized, emits react/compiler-runtime |
+ env.include (RN-style transform list from getSwcLoaderOptions) |
memoized |
+ module.type: 'commonjs' |
memoized, emits require("react/compiler-runtime") |
The last row matters — getSwcLoaderOptions emits module.type: 'commonjs' by default, and the compiler runtime import survives the module transform correctly.
The accepted option surface is narrower than the Babel plugin's. Probed exhaustively:
| option |
accepted values |
target |
'17', '18', '19' — '20' rejected |
compilationMode |
'infer', 'annotation', 'all', 'syntax' |
panicThreshold |
'none', 'critical_errors', 'all_errors' (lowercase only) |
| anything else |
rejected — expected boolean or object |
Notably sources is rejected. The Babel plugin uses it to scope which files get compiled; here that has to be expressed with the loader rule's include / exclude instead. Same for the enable* escape hatches (e.g. enableTreatRefLikeIdentifiersAsRefs) — projects depending on those cannot move off Babel yet.
Version floor. @rspack/core >= 2.1.0. #1414 currently targets "Rspack 2+", which is not sufficient for this; the floor needs to be 2.1 if this ships as a supported feature (or the option needs a version guard, which Re.Pack already has machinery for — see getRspackMajorVersion / isRspack2 in src/helpers/rspackVersion.ts).
React version. The workspace catalog is on react: 19.2.3, where react/compiler-runtime is built in and target can be omitted. React 17/18 projects need an explicit target and the separate react-compiler-runtime package installed — that's a user-facing install step we have to document, not something we can do for them.
Proposed direction
Two independent surfaces, both opt-in and off by default:
-
babel-swc-loader (the default path). Add babel-plugin-react-compiler to the custom-transform map in swc.ts so a project that already has it in babel.config.js gets it lifted to SWC automatically, with its Babel options translated to the reactCompiler shape. Because the surface is narrower, the mapping must detect unsupported options and leave the plugin on the Babel side rather than silently dropping them — a sources or enable* option present means "keep using Babel for this project".
-
getSwcLoaderOptions / getJsTransformRules (the SWC-native path). Add a reactCompiler?: boolean | { target?, compilationMode?, panicThreshold? } option that maps to jsc.transform.reactCompiler, defaulting to off.
Ordering caveat to verify
In babelSwcLoader, Babel runs first and SWC second, so lifting React Compiler to SWC moves it from "before everything" to "after the remaining Babel plugins". JSX survives the Babel pass (transform-react-jsx is in the SWC-supported set, so it is excluded from Babel), which is the main thing React Compiler needs to see intact — but this needs a real test, not an assumption. Projects with worklet-style plugins that rewrite function bodies (react-native-worklets/plugin is in apps/tester-app/babel.config.js, and Reanimated is a first-party integration in packages/plugin-reanimated) are the interesting case: those stay on the Babel side and would now run before the compiler instead of after it.
Scope
Core
Apps and tests
Docs
Open questions
- Does v6 raise the Rspack floor to 2.1 (making this unconditional), or keep 2.0 and version-guard the option?
- Should Re.Pack enable React Compiler by default for new projects in
templates/, follow React Native's own default, or leave it entirely opt-in?
- Is auto-lifting from
babel.config.js the right default for babel-swc-loader, or should it require an explicit loader option? Auto-lifting is the bigger win but silently changes where a plugin runs in the pipeline.
Motivation
The React Compiler has been ported to Rust and is exposed through
builtin:swc-loaderasjsc.transform.reactCompilersince Rspack 2.1. Rspack measures the Rust implementation at 7–13x the speed ofbabel-plugin-react-compiler.Re.Pack has no React Compiler support of any kind today — no mention in
packages/,website/srcor the templates. Users who want it addbabel-plugin-react-compilerto their ownbabel.config.js, and because of howbabel-swc-loaderpartitions work, that plugin then runs on the Babel side for every component file in the app.Part of #1414 (Roadmap to V6), which lists "rust react compiler support" as a deliverable. Adjacent to #1422 (SWC setup rework) — both touch
getSwcLoaderOptions, and the config surface should be designed once.Why it lands on the Babel side today
babelSwcLoaderreads the project's Babel config, partitions the detected plugins into "SWC can do this" vs "Babel must do this", then runs Babel withexcludePlugins: supportedSwcTransformsfollowed by SWC:babel-plugin-react-compilerappears in none ofSWC_SUPPORTED_NORMAL_RULES/SWC_SUPPORTED_CONFIGURABLE_RULES/SWC_SUPPORTED_CUSTOM_RULESinswc.ts, so it is never excluded and always runs through Babel. React Compiler is by far the most expensive Babel plugin in a typical RN app's config — it does whole-function dataflow analysis on every component. Mapping it intojsc.transform.reactCompileris the single biggest remaining Babel offload available to us.Verified behaviour
All of the below was checked against
@rspack/core@2.1.6viaexperiments.swc.transformSync.It works, and composes with the RN-shaped config we already emit:
reactCompiler: truereact/compiler-runtime+ env.include(RN-style transform list fromgetSwcLoaderOptions)+ module.type: 'commonjs'require("react/compiler-runtime")The last row matters —
getSwcLoaderOptionsemitsmodule.type: 'commonjs'by default, and the compiler runtime import survives the module transform correctly.The accepted option surface is narrower than the Babel plugin's. Probed exhaustively:
target'17','18','19'—'20'rejectedcompilationMode'infer','annotation','all','syntax'panicThreshold'none','critical_errors','all_errors'(lowercase only)expected boolean or objectNotably
sourcesis rejected. The Babel plugin uses it to scope which files get compiled; here that has to be expressed with the loader rule'sinclude/excludeinstead. Same for theenable*escape hatches (e.g.enableTreatRefLikeIdentifiersAsRefs) — projects depending on those cannot move off Babel yet.Version floor.
@rspack/core >= 2.1.0. #1414 currently targets "Rspack 2+", which is not sufficient for this; the floor needs to be 2.1 if this ships as a supported feature (or the option needs a version guard, which Re.Pack already has machinery for — seegetRspackMajorVersion/isRspack2insrc/helpers/rspackVersion.ts).React version. The workspace catalog is on
react: 19.2.3, wherereact/compiler-runtimeis built in andtargetcan be omitted. React 17/18 projects need an explicittargetand the separatereact-compiler-runtimepackage installed — that's a user-facing install step we have to document, not something we can do for them.Proposed direction
Two independent surfaces, both opt-in and off by default:
babel-swc-loader(the default path). Addbabel-plugin-react-compilerto the custom-transform map inswc.tsso a project that already has it inbabel.config.jsgets it lifted to SWC automatically, with its Babel options translated to thereactCompilershape. Because the surface is narrower, the mapping must detect unsupported options and leave the plugin on the Babel side rather than silently dropping them — asourcesorenable*option present means "keep using Babel for this project".getSwcLoaderOptions/getJsTransformRules(the SWC-native path). Add areactCompiler?: boolean | { target?, compilationMode?, panicThreshold? }option that maps tojsc.transform.reactCompiler, defaulting to off.Ordering caveat to verify
In
babelSwcLoader, Babel runs first and SWC second, so lifting React Compiler to SWC moves it from "before everything" to "after the remaining Babel plugins". JSX survives the Babel pass (transform-react-jsxis in the SWC-supported set, so it is excluded from Babel), which is the main thing React Compiler needs to see intact — but this needs a real test, not an assumption. Projects with worklet-style plugins that rewrite function bodies (react-native-worklets/pluginis inapps/tester-app/babel.config.js, and Reanimated is a first-party integration inpackages/plugin-reanimated) are the interesting case: those stay on the Babel side and would now run before the compiler instead of after it.Scope
Core
reactCompilertogetSwcLoaderOptions(+ thread throughgetJsTransformRules), off by default, mapping tojsc.transform.reactCompilerbuiltin:swc-loaderis Rspack-only)babel-plugin-react-compilerinswc.ts'sSWC_SUPPORTED_CUSTOM_RULES, translatingtarget/compilationMode/panicThresholdsources,enable*, anything outside the three abovetargetis inferred from the resolvedreactversion or left explicitApps and tests
react-native-worklets/pluginandpackages/plugin-reanimatedapps/tester-app(or a variant) so the path is exercised on device, not just in unit testsswc.tsmapping, including the unsupported-option bail-outgetSwcLoaderOptionstestsDocs
target+react-compiler-runtimeinstall stepbabel-plugin-react-compiler(sources→ use ruleinclude/exclude) and when a project should stay on Babelwebsite/src/latest/api/utils/get-swc-loader-options.mdandget-js-transform-rules.mdOpen questions
templates/, follow React Native's own default, or leave it entirely opt-in?babel.config.jsthe right default forbabel-swc-loader, or should it require an explicit loader option? Auto-lifting is the bigger win but silently changes where a plugin runs in the pipeline.