Skip to content

Commit e254a09

Browse files
authored
Merge pull request #13492 from rdosanjh/more-vertical-space-between-tsc-watch-results
adding 2 new lines to tsc --watch output
2 parents c320c88 + 093929e commit e254a09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/tsc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ namespace ts {
155155
output += `${ diagnostic.file.fileName }(${ loc.line + 1 },${ loc.character + 1 }): `;
156156
}
157157

158-
output += `${ flattenDiagnosticMessageText(diagnostic.messageText, sys.newLine) }${ sys.newLine }`;
158+
output += `${ flattenDiagnosticMessageText(diagnostic.messageText, sys.newLine) }${ sys.newLine + sys.newLine + sys.newLine }`;
159159

160160
sys.write(output);
161161
}

0 commit comments

Comments
 (0)