diff --git a/src/compiler/tsc.ts b/src/compiler/tsc.ts index 2324a089b25..9734ba6689b 100644 --- a/src/compiler/tsc.ts +++ b/src/compiler/tsc.ts @@ -20,8 +20,9 @@ namespace ts { } for (const file of files) { - const message = `TSFILE: ${file}${sys.newLine}`; - sys.write(message); + const filepath = getNormalizedAbsolutePath(file, sys.getCurrentDirectory()); + + sys.write(`TSFILE: ${filepath}${sys.newLine}`); } }