From 40b22b2fcacde012b4093317249e2367519fd3ae Mon Sep 17 00:00:00 2001 From: Paul van Brenk Date: Thu, 7 Apr 2016 15:31:02 -0700 Subject: [PATCH] Ensure the listed files have absolute paths. --- src/compiler/tsc.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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}`); } }