We have a file structure, for example
/common
/src
/componentA
/componentB
And would like to use webpack aliases
resolve: {
alias: {
common: 'common/src'
}
}
modules such as
require('common/componentA')
Is there a way to teach WebStorm to resolve this in order to save the option using navigation using Ctrl+Click?
ResourceRoot parameter does not help in this case
source
share