capaj / vscode-exports-autocomplete

finds javascript ES6 exports in your project and autocompletes them when writing javascript statements
MIT License
18 stars 6 forks source link

Module resolve #43

Open pvpshoot opened 6 years ago

pvpshoot commented 6 years ago

Hi in our projects we like to use module resolve:

// instead
import A from "../../components/A";

// resolve
import A from 'components/A';

Can you add a config for this? or respect jsconfig from VSCode