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 2b5bbfe commit 0a93768Copy full SHA for 0a93768
src/harness/harness.ts
@@ -871,7 +871,7 @@ namespace Harness {
871
fileMap.set(path, (): ts.SourceFile => { throw new Error("Symlinks should always be resolved to a realpath first"); });
872
}
873
const sourceFile = createSourceFileAndAssertInvariants(fileName, file.content, scriptTarget);
874
- fileMap.set(path, ts.memoize(() => sourceFile));
+ fileMap.set(path, () => sourceFile);
875
876
877
0 commit comments