在ReactNative项目中遇到一个错误,提示`@typescript-eslint/eslint-plugin`的`node`版本不兼容。错误信息指出需要的是`^12.22.0||^14.17.0||>=16.0.0`,但当前的`node`版本是`14.15.0`。为了解决这个问题,可以尝试使用`yarn config set ignore-engines true`命令来忽略`node`版本检查,或者直接升级到兼容的`node`版本进行安装。
error @typescript-eslint/eslint-plugin@5.30.6: The engine "node" is incompatible with thismodule. Expected version "^12.22.0 || ^14.17.0 || >=16.0.0". Got "14.15.0"