Rsbuild uses SWC transpilation by default. When existing functions cannot meet the requirements, and some Babel presets or plugins need to be added for additional processing, you can use Rsbuild's Babel Plugin.
Adding the Babel Plugin will perform additional Babel transpilation before the original SWC transpilation, resulting in additional compilation overhead and causing a significant decrease in build performance.
You can install the plugin using the following command:
You can register the plugin in the rsbuild.config.ts
file:
Options passed to babel-loader
, please refer to the babel-loader documentation for detailed usage.
Object | Function
When configuration is of type Function
, the default Babel configuration will be passed as the first parameter. You can directly modify the configuration object or return an object as the final babel-loader
configuration.
The second parameter of the function provides some more convenient utility functions. Please continue reading the documentation below.
The above example is just for reference, usually you don't need to manually configure babel-plugin-import
, because the Rsbuild already provides a more general source.transformImport
configuration.
When configuration's type is Object
, the config will be shallow merged with default config by Object.assign
.
Note that Object.assign
is a shallow copy and will completely overwrite the built-in presets
or plugins
array, please use it with caution.
When configuration is a Function, the tool functions available for the second parameter are as follows:
(plugins: BabelPlugin[]) => void
Add some Babel plugins. For example:
(presets: BabelPlugin[]) => void
Add Babel preset configuration. (No need to add presets in most cases)
(plugins: string | string[]) => void
To remove the Babel plugin, just pass in the name of the plugin to be removed, you can pass in a single string or an array of strings.
(presets: string | string[]) => void
To remove the Babel preset configuration, pass in the name of the preset to be removed, you can pass in a single string or an array of strings.
string | RegExp | (string | RegExp)[]
undefined
Used to specify the files that need to be compiled by Babel.
Due to the performance overhead of Babel compilation, matching only certain files through include
can reduce the number of modules compiled by Babel, thereby improving build performance.
For example, to only compile .custom.js
files and ignore files under node_modules
:
When you configure the include
or exclude
options, Rsbuild will create a separate Rspack rule to apply babel-loader and swc-loader.
This separate rule is completely independent of the SWC rule built into Rsbuild and is not affected by source.include and source.exclude.
string | RegExp | (string | RegExp)[]
undefined
Used to specify the files that do not need to be compiled by Babel.
Due to the performance overhead of Babel compilation, excluding certain files through exclude
can reduce the number of modules compiled by Babel, thereby improving build performance.
After modifying the babel-loader
configuration, you can view the final generated configuration in Rsbuild debug mode.
First, enable debug mode by using the DEBUG=rsbuild
option:
Then open the generated rspack.config.web.mjs
file and search for the babel-loader
keyword to see the complete babel-loader
configuration.
After using the babel plugin, if the compilation progress bar is stuck, but there is no Error log on the terminal, it is usually because an exception occurred during the compilation. In some cases, when Error is caught by webpack or other modules, the error log can not be output correctly. The most common scenario is that there is an exception in the Babel config, which is caught by webpack, and webpack swallows the Error in some cases.
Solution:
If this problem occurs after you modify the Babel config, it is recommended to check for the following incorrect usages: