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 c3590aa commit d05a4c4Copy full SHA for d05a4c4
src/compiler/tsc.ts
@@ -94,7 +94,7 @@ module ts {
94
output += diagnostic.file.filename + "(" + loc.line + "," + loc.character + "): ";
95
}
96
97
- var category = DiagnosticCategory[diagnostic.category];
+ var category = DiagnosticCategory[diagnostic.category].toLowerCase();
98
output += category + " TS" + diagnostic.code + ": " + diagnostic.messageText + sys.newLine;
99
100
sys.write(output);
0 commit comments