Description
Currently export autocomplete supports node_modules pkgs and project based files (ie relative files).
Users of .babelrc module resolvers won't work for the autocompleting the export list.
Steps to Reproduce
Expected behavior:
- include a
.babelrc file. Example below
{
"plugins": [
["module-resolver", {
"root": ["./src"],
"alias": {
"test": "./test",
"underscore": "lodash"
}
}]
]
}
- Enable .babelrc option in the package's menu
- import a file using the aliases noted in your babelrc
- the export list should have autocomplete for files in that folder
Description
Currently export autocomplete supports node_modules pkgs and project based files (ie relative files).
Users of
.babelrcmodule resolvers won't work for the autocompleting the export list.Steps to Reproduce
Expected behavior:
.babelrcfile. Example below