[]
Exclude JavaScript or TypeScript files that do not need to be compiled by SWC.
The usage of source.exclude
is consistent with Rule.exclude in Rspack, which supports passing in strings or regular expressions to match the module path.
For example:
Refer to source.include to learn more.
source.exclude
is used to specify JavaScript/TypeScript files that do not need to be compiled. This means that these files will not be translated by SWC, but the referenced files will still be bundled into the outputs.
If you want certain files to be excluded and not bundled into the outputs, you can use Rspack's IgnorePlugin.