最佳答案
I have a folder in my project main
that I am resolving like a module. For instance import x from 'main/src'
imports main/src/index.js
. This is done through webpack's resolve alias configuration.
An issue I am having is getting rid of the errors via eslint. I know eslint provides a webpack resolve plugin, however, I've been having trouble getting it to work. I suspect it is because I am on webpack 2 and using es6 in my webpack config files.
Is there a manual way to write a resolve setting that fixes this problem for my eslint?
The only other hack I've seen work is using import/core-modules
but then I have to list out every folder in the subdirectory tree main/src/bar
, main/src/foo
. This would not be ideal.