Rspack supports building with ESM format output. When building applications, Rspack generates IIFE-based bundled output by default instead of standard CommonJS or ESM format. You can configure output.module to generate ESM format output. The following sections introduce how to build application ESM output and build library ESM output, and finally list the configuration checklist related to ESM output.
When building applications, Rspack generates CommonJS-like format output by default. If you need to generate ESM format output, you can configure it in rspack.config.mjs
as follows:
You can check out examples of building React applications to ESM output and React ESM SSR in rspack-examples.
We recommend using Rslib to build library output. Rslib is built on top of Rspack and can build multiple formats including ES Module, CommonJS, and UMD. Rslib provides higher-level APIs that simplify the library building process. Compared to using Rspack directly, using Rslib for library building is more convenient and efficient.
If you need to use Rspack directly to build ESM format output for libraries (npm library), you need to configure the following:
You can check out this rspack-examples ESM library example.
Building ESM output also requires handling various detailed issues, which are not listed exhaustively here. You can refer to the ESM format related configurations in Rslib, or use Rslib directly for out-of-the-box library building.
Currently, Rspack's ESM support is still being improved. In certain use cases, you may encounter integration issues between ESM and other features. The main limitations include:
export * from '...'
) cannot be properly preserved in ESM formatWe are continuously improving Rspack's ESM support to provide a comprehensive solution that addresses existing issues and makes ESM usage more simple and intuitive, better embracing the modern JavaScript module system.
Below are the main configuration options related to ESM and their descriptions, which are used when building both applications and libraries.
true
to generate ESM format output. When this option is enabled, it affects the following configurations:
output.module
is true
, externalsType
defaults to 'module-import'
output.module
is true
, the default filename is '[name].mjs'
instead of '[name].js'
output.module
is true
, chunk filename defaults to '[id].mjs'
instead of '[id].js'
output.module
is true
, defaults to '[id].[fullhash].hot-update.mjs'
output.module
is true
, defaults to '[runtime].[fullhash].hot-update.json.mjs'
output.module
is true
, output.iife
defaults to false
output.module
is true
, defaults to 'module'
instead of 'var'
output.module
is true
, defaults to 'module'
output.module
is true
output.module
is true
output.module
is true
output.module
is true
, __filename
and __dirname
default to 'node-module'
'module'
to use ESM format.'modern-module'
for additional optimization of library ESM output format.'import'
to use ESM import
for loading chunks.'import'
to use ESM import
for loading workers.'module'
to use ESM <script type="module">
for loading .mjs
modules.