-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not using webpack config to resolve #537
Comments
Have you installed he Webpack resolver package? |
Yes, "eslint-import-resolver-webpack": "0.5.1". I actually solved the issue late last night. The webpack config file uses ES6 and this package was unable to use it until I changed all the code to ES5. Any way around that? |
One way is to name it How is Webpack using it? Assuming your Node version can handle all the syntax, this plugin should understand it, as well. |
My webpack config works and the modules are correctly resolved in my build process. However, ESLint is reporting
import-no-unresolved
errors for my packages, for exampleUnable to resolve path to module 'redux'
This occurs when I added the following config to my .eslintrc file:
(My webpack config is stored in ./webpack/prod.js)
The text was updated successfully, but these errors were encountered: