Skip to content
This repository has been archived by the owner on Dec 1, 2019. It is now read-only.

Commit

Permalink
fix: use proper compiler variable
Browse files Browse the repository at this point in the history
  • Loading branch information
s-panferov committed Dec 1, 2017
1 parent 4408adb commit e30023d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/checker/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ function createChecker(receive: (cb: (msg: Req) => void) => void, send: (msg: Re
files = new CaseInsensitiveMap();

if (compiler.createModuleResolutionCache) {
cache = ts.createModuleResolutionCache(
cache = compiler.createModuleResolutionCache(
context,
normalize
);
Expand Down

0 comments on commit e30023d

Please sign in to comment.