If I have a folder structure like this:
where the content of index.js looks something like:
export * from 'mathUtils'
export * from 'stringUtils'
If I try to import a util (from outside the utils directory) like this:
import someMathUtil from 'utils/mathUtils'
IntelliJ will warn me that the import can be shortened to
import someMathUtil from 'utils'`
since it's re-exported from index.js.
Is there a way to achieve the same behaviour in VSCode?