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:
The configurations of babel-loader can be modified through the following configuration.
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.
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.js
file and search for the babel-loader
keyword to see the complete babel-loader
configuration.