创建 React App 不工作:错误@typescript-eslint/eslint-plugin@2.10.0:引擎 "node" 与此模块不兼容?
Create React App not working : error @typescript-eslint/eslint-plugin@2.10.0: The engine "node" is incompatible with this module?
我不确定为什么 yarn create react app 会失败。错误信息提示 @typescript-eslint/esling-plugin version
is not compatible with the node engine
。我也试过 yarn cache clean --force
但没有用。我没有 package.json 来更改节点引擎,正如您在终端上看到的那样,它已被删除。谢谢
yarn v : 1.21.1
node v : 11.2.0
你有节点版本:
node v : 11.2.0
错误信息:
Expected version "^8.10.0 || ^10.13.0 || >=11.10.1"
版本 >=11.10.1
表示 11.10.1, 11.10.2, ..., 11.11.* ...
你有 10.2 小于 11.10
升级 node,或搜索与您的 node 版本兼容的另一个库版本
我不确定为什么 yarn create react app 会失败。错误信息提示 @typescript-eslint/esling-plugin version
is not compatible with the node engine
。我也试过 yarn cache clean --force
但没有用。我没有 package.json 来更改节点引擎,正如您在终端上看到的那样,它已被删除。谢谢
yarn v : 1.21.1
node v : 11.2.0
你有节点版本:
node v : 11.2.0
错误信息:
Expected version "^8.10.0 || ^10.13.0 || >=11.10.1"
版本 >=11.10.1
表示 11.10.1, 11.10.2, ..., 11.11.* ...
你有 10.2 小于 11.10
升级 node,或搜索与您的 node 版本兼容的另一个库版本