[TypeScript] console.log() を使おうとすると Cannot find name 'console' というエラーが出る場合の対処方法

作成日: 2021年08月10日

TypeScript では console が定義されていない状態で console.log() を使おうとすると下記のようなエラーが発生します。

error TS2584: Cannot find name 'console'. Do you need to change your target library? Try changing the 'lib' compiler option to include 'dom'.

console が定義されている @types/node をインストールすると、上記のエラーが解消されました。

npm install -g @types/node
TypeScript