Merge pull request #13492 from rdosanjh/more-vertical-space-between-tsc-watch-results

adding 2 new lines to tsc --watch output
This commit is contained in:
Mohamed Hegazy
2017-01-15 21:53:11 -08:00
committed by GitHub

View File

@@ -155,7 +155,7 @@ namespace ts {
output += `${ diagnostic.file.fileName }(${ loc.line + 1 },${ loc.character + 1 }): `;
}
output += `${ flattenDiagnosticMessageText(diagnostic.messageText, sys.newLine) }${ sys.newLine }`;
output += `${ flattenDiagnosticMessageText(diagnostic.messageText, sys.newLine) }${ sys.newLine + sys.newLine + sys.newLine }`;
sys.write(output);
}