React プロジェクトを作るコマンドでエラーが出たので yarn 自体のアップデートで対処しました。
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
以上です。