From 751bb45a0a4ca4ab3baf5e5037c0b10f0430aeb6 Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Wed, 23 Sep 2020 11:39:20 +1000 Subject: fix: ignore fileExists in tsc host (#7635) Fixes #7630 --- cli/tsc/99_main_compiler.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'cli/tsc') diff --git a/cli/tsc/99_main_compiler.js b/cli/tsc/99_main_compiler.js index 63a5d1f5b..94a08e6ab 100644 --- a/cli/tsc/99_main_compiler.js +++ b/cli/tsc/99_main_compiler.js @@ -278,8 +278,9 @@ delete Object.prototype.__proto__; /* TypeScript CompilerHost APIs */ - fileExists(_fileName) { - return notImplemented(); + fileExists(fileName) { + log(`compiler::host.fileExists("${fileName}")`); + return false; } getCanonicalFileName(fileName) { -- cgit v1.2.3