fix: ignore fileExists in tsc host (#7635)

Fixes #7630
This commit is contained in:
Kitson Kelly 2020-09-23 11:39:20 +10:00 committed by GitHub
parent 68fd7a927b
commit 751bb45a0a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 25 additions and 5 deletions

View file

@ -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) {