The content of this section is derived from the content of the following links and is subject to the CC BY 4.0 license.
The following contents can be assumed to be the result of modifications and deletions based on the original contents if not specifically stated.
These are the remaining configuration options supported by rspack.
false | objectfalse
Unlike webpack, where the default value of the amd option is {} (meaning AMD module dependency analysis is enabled by default), Rspack sets the default value of the amd option to false. This means AMD module dependency analysis is disabled by default in Rspack. This change was made because the usage of AMD modules is gradually decreasing. If your application requires it, you can enable this option by yourself.
Enable this option to support dependency analysis for AMD modules, which is helpful for compatibility with some older libraries written according to the AMD specification.
export default {
amd: {}, // enable parsing AMD module dependencies
};In addition, you can set the values of require.amd or define.amd through this configuration:
export default {
amd: {
jQuery: true, // `require.amd` and `define.amd` are set to `{ jQuery: true }`.
},
};booleanfalseFail out on the first error instead of tolerating it. By default Rspack will log these errors in red in the terminal, as well as the browser console when using HMR, but continue bundling. To enable it:
export default {
bail: true,
};This will force Rspack to exit its bundling process.
string[]undefinedA list of name defining all sibling configurations it depends on. Dependent configurations need to be compiled first.
In watch mode dependencies will invalidate the compiler when:
Remember that current configuration will not compile until its dependencies are done.
export default [
{
name: 'client',
target: 'web',
// …
},
{
name: 'server',
target: 'node',
dependencies: ['client'],
},
];(RegExp | ((warning: Error, Compilation: Compilation) => boolean))[]undefinedTells Rspack to ignore specific warnings.
export default {
//...
ignoreWarnings: [/warning from compiler/, warning => true],
};stringundefinedName of the configuration. Used when loading multiple configurations.
export default {
//...
name: 'admin-app',
};Record<string, any>undefinedExpose custom values into the loader context.
For example, you can define a new variable in the loader context:
export default {
// ...
loader: {
answer: 42,
},
};Then use this.answer to get its value in the loader:
module.exports = function (source) {
// ...
console.log(this.answer); // will log `42` here
return source;
};You can override properties in the loader context as webpack copies all properties that are defined in the loader to the loader context.
booleanundefinedCapture a "profile" of the application, including statistics and hints, which can then be dissected using the Analyze tool. It will also log out a summary of module timings.