builtin:swc-loader
is the Rust version of swc-loader
, aiming to deliver better performance. The Loader's configuration is aligned with the JS version of swc-loader
(SWC plugins will be provided in future releases and are currently not supported).
If you need to use builtin:swc-loader
in your project, configure it as follows:
To transpile ts
files:
Or to transpile jsx
files:
Additionally, you can directly refer to example-builtin-swc-loader
for more usage guidelines.
See SWC configuration.
Experimental features provided by rspack.
Ported from babel-plugin-import, configurations are basically the same.
Function can't be used in configurations, such as customName
, customStyleName
, they will cause some performance overhead as these functions must be called from Rust
, inspired by modularize_imports, some simple function can be replaced by template string instead. Therefore, the function type configuration such as customName
, customStyleName
can be passed in strings as templates to replace functions and improve performance.
For example:
Apply following configurations:
{{ member }}
will be replaced by the imported specifier:
Template customName: 'foo/es/{{ member }}'
is the same as customName: (member) => `foo/es/${member}`
, but template string has no performance overhead of Node-API.
The template used here is handlebars. There are some useful builtin helpers, Take the above import statement as an example:
Transformed to:
In addition to kebabCase
, there are camelCase
, snakeCase
, upperCase
and lowerCase
can be used as well.
You can check the document of babel-plugin-import for other configurations.
Taking the classic 4.x version of ant-design as an example, we only need to configure it as follows:
The above configuration will transform import { Button } from 'antd'
; to:
Then you can see the style file is automatically imported and applied on the page.
Of course, if you have already configured support for less
, you can simply use the following configuration:
The above configuration will transform import { Button } from 'antd';
to:
Converted graphql
call expression to corresponding require
call expression.
undefined
When this configuration is set to true
, Rspack will attempt to locate relay.config.json
, relay.config.js
, and package.json
files under the context directory in order, as detailed in the relay-compiler documentation. If none of these files are found, Rspack will use the default configuration.
If specific configuration is passed, Rspack will not attempt to locate any relay
config file, but use the received configuration directly.
Using optimization for emotion in compile-time.
false
If you are using emotion
in your project, and want functionality which is similar to @emotion/babel-plugin, you can enable rspackExperiments.emotion
option, Rspack will use swc_emotion
plugin to transpile your emotion
code.
You can enable default options by specify rspackExperiments.emotion: true
.
Each field name is the same with @emotion/babel-plugin, more detailed explanation (content below is from the official document of @emotion/babel-plugin):
'never' | 'dev-only' | 'always'
'dev-only'
This option is used for:
iconStyles$1
will become iconStyles1
) because $
is not validCSS ClassName Selector.Each possible value for this option produces different output code:
'dev-only'
- we optimize the production code, so there are no labels added there, but at the same time we keep labels for development environments,'always'
- we always add labels when possible,'never'
- we disable this entirely and no labels are added.string
"[local]"
This option only works when 'autoLabel'
is set to 'dev-only'
or 'always'
. It allows you to define the format of the resulting label
. The format is defined via string where variable parts are enclosed in square brackets []
. For example labelFormat: "my-classname--[local]"
, where '[local]'
will be replaced with the name of the variable the result is assigned to.
Allowed values:
'[local]'
- the name of the variable the result of the css or styled expression is assigned to.'[filename]'
- name of the file (without extension) where css or styled expression is located.'[dirname]'
- name of the directory containing the file where css or styled expression is located.This format only affects the label property of the expression, meaning that the css prefix and hash will be prepended automatically.
boolean
Whether to inject source maps. By default, this will be disabled in production mode, and enabled in development mode.
undefined
This option allows you to tell Rspack what imports it should look at to determine what it should transform so if you re-export Emotion's exports, you can still use the Babel transforms
{}
Configure the compile-time support for styled-components. SWC's support for styled-components is essentially aligned with the official Babel plugin, so you can visit https://styled-components.com/docs/tooling#babel-plugin for more information.
Usually, you need to enable the JSX support of builtin:swc-loader
to handle React components. The configuration may look like this: