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 c3a6f01 commit ad42d6b
Show file tree
Hide file tree
Showing 5 changed files with 286 additions and 101 deletions.
8 changes: 6 additions & 2 deletions extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ async function activate(context) {
`Using ${file} to resolve alias paths`
);

ConfigParser.createMappingsFromConfig(config, { type, accessPath });
ConfigParser.createMappingsFromConfig(
config,
{ type, accessPath },
path
);
});
}
});
Expand All @@ -60,7 +64,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 ad42d6b

Please sign in to comment.