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 c909bec commit 3943588Copy full SHA for 3943588
src/compiler/program.ts
@@ -203,7 +203,7 @@ namespace ts {
203
return compilerHost;
204
}
205
206
- interface ComplierHostLikeForCache {
+ interface CompilerHostLikeForCache {
207
fileExists(fileName: string): boolean;
208
readFile(fileName: string, encoding?: string): string | undefined;
209
directoryExists?(directory: string): boolean;
@@ -213,7 +213,7 @@ namespace ts {
213
214
/*@internal*/
215
export function changeCompilerHostLikeToUseCache(
216
- host: ComplierHostLikeForCache,
+ host: CompilerHostLikeForCache,
217
toPath: (fileName: string) => Path,
218
getSourceFile?: CompilerHost["getSourceFile"]
219
) {
0 commit comments