エラー内容
- 動作するversionが指定されている模様
1 2 |
error @typescript-eslint/eslint-plugin@2.24.0: The engine "node" is incompatible with this module. Expected version "^8.10.0 || ^10.13.0 || >=11.10.1". Got "9.11.2" error Found incompatible module. |
対処
今のバージョンを確認
1 2 3 4 5 |
yuta:~/react-google-api $ nvm list -> v9.11.2 v10.18.1 system default -> v9.11.2 |
対応していそうなバージョンを取得
1 |
nvm install 11.10.1 |
対応していそうなバージョンへ変更
1 |
nvm use 11.10.1 |
リトライ
1 2 |
npm install -g create-react-app create-react-app my-app |