我尝试为我的 Angular 项目安装 linter,但收到此错误: 找不到“@nrwl/linter:eslint”构建器的节点包。
我安装了所有依赖项。我不知道出了什么问题。
package.json:
"devDependencies": {
...
"@nrwl/eslint-plugin-nx": "^16.1.4",
"@nrwl/linter": "^16.1.4",
...
}
在遇到类似错误后,我在谷歌搜索时发现了这个问题:
无法解析@nx/linter:eslint。
无法找到本地插件[] Map(0) {}
特别是,我将 NX 从版本 19 升级到 20。
解决方案是替换:
"executor": "@nx/linter:eslint"
与:
"executor": "@nx/eslint:lint"
我的代码中的任何地方。