We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--verbose
1 parent 2a6db9a commit 2d1cd5dCopy full SHA for 2d1cd5d
packages/angular_devkit/build_angular/src/angular-cli-files/models/webpack-configs/stats.ts
@@ -38,11 +38,12 @@ const verboseWebpackOutputOptions = {
38
chunkModules: true,
39
errorDetails: true,
40
moduleTrace: true,
41
+ logging: 'verbose',
42
};
43
44
export function getWebpackStatsConfig(verbose = false) {
45
return verbose
- ? Object.assign(webpackOutputOptions, verboseWebpackOutputOptions)
46
+ ? { ...webpackOutputOptions, ...verboseWebpackOutputOptions }
47
: webpackOutputOptions;
48
}
49
0 commit comments