We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aaa453e commit 4fd7310Copy full SHA for 4fd7310
packages/angular_devkit/build_angular/src/angular-cli-files/models/webpack-configs/stats.ts
@@ -26,11 +26,16 @@ const webpackOutputOptions = {
26
};
27
28
const verboseWebpackOutputOptions = {
29
+ // The verbose output will most likely be piped to a file, so colors just mess it up.
30
+ colors: false,
31
+ usedExports: true,
32
+ maxModules: Infinity,
33
+ optimizationBailout: true,
34
+ reasons: true,
35
children: true,
36
assets: true,
37
version: true,
- reasons: true,
- chunkModules: false, // TODO: set to true when console to file output is fixed
38
+ chunkModules: true,
39
errorDetails: true,
40
moduleTrace: true,
41
0 commit comments