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.
1 parent 20b5d91 commit 2a1e19cCopy full SHA for 2a1e19c
packages/ngtools/webpack/src/transformers/ast_helpers.ts
@@ -91,7 +91,7 @@ export function transformTypescript(
91
92
// Log diagnostics if emit wasn't successfull.
93
if (emitSkipped) {
94
- console.log(diagnostics);
+ console.error(diagnostics);
95
96
return null;
97
}
packages/ngtools/webpack/src/type_checker.ts
@@ -128,7 +128,7 @@ export class TypeChecker {
128
129
if (warnings.length > 0) {
130
const message = formatDiagnostics(warnings);
131
- console.log(terminal.bold(terminal.yellow('WARNING in ' + message)));
+ console.error(terminal.bold(terminal.yellow('WARNING in ' + message)));
132
133
134
0 commit comments