Why does the eslint report resolve the error: cannot resolve resolver "webpack"?

This is my .eslintrc. Why this configuration leads to an eslint report. Resolving the error: cannot load the "webpack" resolver?

{
  // ...
  "settings": {
    "import/resolver": {
      webpack: {
        config: './node_modules/@ali/grunt-default-config/lib/webpack.eslint.config.js'
      }
    }
  }
}
+4
source share

Source: https://habr.com/ru/post/1677906/


All Articles