Skip to content

Commit

Permalink
refactor(resolve-map): address TS strictNullChecks flag
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Jun 7, 2019
1 parent cb5ad93 commit fa7b252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/resolve-map/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ const resolvePath = (
v = _resolve(root, path.slice(0, i), resolved, stack);
}
// restore
stack.push(pathID);
stack.push(pathID!);
return v;
};

Expand Down

0 comments on commit fa7b252

Please sign in to comment.