Skip to content

Commit 40b22b2

Browse files
author
Paul van Brenk
committed
Ensure the listed files have absolute paths.
1 parent 88a8992 commit 40b22b2

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/compiler/tsc.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ namespace ts {
2020
}
2121

2222
for (const file of files) {
23-
const message = `TSFILE: ${file}${sys.newLine}`;
24-
sys.write(message);
23+
const filepath = getNormalizedAbsolutePath(file, sys.getCurrentDirectory());
24+
25+
sys.write(`TSFILE: ${filepath}${sys.newLine}`);
2526
}
2627
}
2728

0 commit comments

Comments
 (0)