npx create-react-app コマンドでエラー
2020-01-27
1分で読了
更新: 2025-12-14
目次
React のプロジェクトを作ろうと思い、下記のコマンドを叩きました。
npx create-react-app react_app
しかし、下記のエラーが出てしまいました。
error fork-ts-checker-webpack-plugin@3.1.0: The engine "yarn" is incompatible with this module. Expected version ">=1.0.0". error Found incompatible module
そこで yarn 自体をアップデートすることで解消できました。
npm i -g yarn
以上です。