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.
Generate packaging information that can be used to analyze module dependencies and optimize compilation speed.
@rspack/cli
, rspack build --json stats.json
.stats.toJson(options)
、stats.toString(options)
.boolean | string | Object
{"preset":"errors-warnings","timings":true}
Preset | Description |
---|---|
'normal' (true ) |
Output by default value of stats options |
'none' (false ) |
Output nothing |
'verbose' |
Output everything |
'errors-only' |
Output only error-related information |
'errors-warnings' |
Output only error and warning related information |
You can specify exactly which packing information to output, all the following fields are optional.
boolean
true
Tells stats whether to show the asset information.
boolean
true
Tells stats whether to show the chunk information.
boolean
true
Tells stats whether to show the module information.
boolean
true
Tells stats whether to show the entrypoints information.
boolean
true
Tells stats whether to add information about the namedChunkGroups.
boolean
true
Tells stats to add information about the reasons of why modules are included.
boolean
true
Tells stats whether to add information about the hash of the compilation.
boolean
true
Tells stats whether to display the errors.
boolean
true
Add errors count.
boolean
true
Tells stats to add warnings.
boolean
true
Add warnings count.
boolean
false
Tells stats whether to output in the different colors.
It is set to true
by default when executing rspack build
on environments with color support.
boolean
true
Tells stats to add information about the Rspack version used.
boolean
true
Tells stats to show the publicPath.
boolean
true
Tells stats to show the outputPath.
boolean
true
Tells stats whether to add information about the built modules to information about the chunk.
boolean
false
Tells stats to display chunk parents, children and siblings.
boolean
false
Tells stats to add IDs of modules and chunks.
boolean
true
Tells stats to add the timing information.
boolean
true
Tells stats whether to add the build date and the build time information. Set stats.builtAt to false to hide it.
boolean
true
Tells stats whether to add information about assets inside modules. Set stats.moduleAssets to false to hide it.
number
15
Tells stats how many items of modules should be displayed (groups will be collapsed to fit this space).
boolean
true
Tells stats whether to add information about modules nested in other modules (like with module concatenation).
boolean
false
Tells stats to add the source code of modules.
'info' | 'none' | 'error' | 'warn' | 'log' | 'verbose' | boolean
Tells stats whether to add logging output.
Array<string | RegExp | function (name) => boolean>
Tells stats to include the debug information of the specified loggers such as Plugins or Loaders. When stats.logging is set to false, stats.loggingDebug option is ignored.
boolean
Enable stack traces in the logging output for errors, warnings and traces. Set stats.loggingTrace to hide the trace.
boolean
Tells stats whether to add information about the childCompiler.
boolean
undefined
Controlling whether all stats options are output.
boolean
undefined
Output according to preset values.
If you want to use the preset output behavior but want to output more or less of individual fields, you can customize the output behavior of the fields after specifying preset or all.
For example, only the error and the reason why the module was introduced are output.