Skip to content

Commit

Permalink
feat(ConfigSupport): Rollup support
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioCadenas committed Aug 8, 2021
1 parent 68de2c5 commit b1f4513
Show file tree
Hide file tree
Showing 5 changed files with 269 additions and 96 deletions.
8 changes: 6 additions & 2 deletions extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ async function activate(context) {
`Using ${file} to resolve alias paths`
);

ConfigParser.createMappingsFromConfig(config, { type, accessPath });
ConfigParser.createMappingsFromConfig(
config,
{ type, accessPath },
path
);
});
}
});
Expand All @@ -61,7 +65,7 @@ async function activate(context) {
`Using ${file} to resolve alias paths`
);

ConfigParser.createMappingsFromConfig(config, { type, accessPath });
ConfigParser.createMappingsFromConfig(config, { type, accessPath }, path);
registerProviders(context);
});
}
Expand Down
Loading

0 comments on commit b1f4513

Please sign in to comment.