error Command “tsc” not found.発生時の状況
yarn testを実行したらなんか色々エラーが出た。その中に「error Command “tsc” not found.」がある。
$ yarn test
yarn run v1.22.11
$ yarn lint:types && jest --no-cache
$ yarn tsc --noEmit -p .
error Command "tsc" not found.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
エラーの原因
typescriptをインストールしてなかったから。
エラーの解決方法
typescriptをインストールすればOK。下記のコマンドを実行すればインストールされます。
$ npm install -g typescript
ちゃんとtypescriptがインストールされているか確かめたいときはバージョンを確認するコマンドを実行する。
$ tsc --version
Version 4.4.2
上記のようにtypescriptのバージョンが表示されれば問題なくインストールできている。