This plugin is converts JavaScript chunks into Hermes bytecode for production-level performance optimization. It also converts related source maps to be compatible with bytecode bundles.
If you enable Hermes in your project, your index.bundle file and it's source-map will be transformed by react-native.
You should exclude it from the plugin to avoid processing it twice.
This plugin will only transform assets that are emitted after the compilation. To ensure that asset is always emitted we disable the compareBeforeEmit option which is enabled by default in Rspack/webpack.
compareBeforeEmit option is used to skip emitting assets that are identical to the
ones present in build directory, which might result in transformation being
skipped when there is a untransformed bundle present in the build directory.
Since this plugin is only meant to be used as a production-level optimization, it should not affect your development experience.
booleantrueUse this to enable or disable the plugin. You should only enable this plugin when building for production environment.
string[] | RegExp | RegExp[]trueMatches all modules that match this resource, and will match against Resource (the absolute path without query and fragment).
string[] | RegExp | RegExp[]undefinedMatches all modules that match this condition against the absolute path of the resource (without query and fragment).
string[] | RegExp | RegExp[]undefinedExcludes all modules that match this condition and will match against the absolute path of the resource (without query and fragment).
stringundefinedPath to the Hermes command-line tool. If not specified, the plugin will try to find it automatically.
stringundefinedUse this to specify the path to the React Native package. If not specified, the plugin will try to find it automatically.
booleanundefinedUse this to force enable compareBeforeEmit Rspack/webpack's output option.