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

Commit

Permalink
fix: resolve dependencies for types entries
Browse files Browse the repository at this point in the history
  • Loading branch information
s-panferov committed Jul 25, 2016
1 parent d20867d commit b70a81c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/host.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ export class State {
);

if (resolvedTypeReferenceDirective) {
this.readFileAndAdd(resolvedTypeReferenceDirective.resolvedFileName);
let fileName = resolvedTypeReferenceDirective.resolvedFileName;
this.fileAnalyzer.checkDependencies(fileName);
this.fileAnalyzer.dependencies.addTypeReferenceResolution(
TSCONFIG_INFERRED,
type,
Expand Down

0 comments on commit b70a81c

Please sign in to comment.