We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dc5e08 commit d706e30Copy full SHA for d706e30
lib/host.ts
@@ -84,11 +84,9 @@ export class Host implements ts.CompilerHost {
84
return this.fallback.getSourceFile(fileName, languageVersion, onError);
85
}
86
87
- realpath = (path: string) => {
88
- return this.fallback.realpath(path);
89
- }
+ realpath = (path: string) => this.fallback.realpath(path);
90
91
- getDirectories = (path: string) => {
92
- return this.fallback.getDirectories(path);
93
+ getDirectories = (path: string) => this.fallback.getDirectories(path);
+
+ directoryExists = (path: string) => this.fallback.directoryExists(path);
94
0 commit comments