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

在终端使用 ts-node 运行ts文件时,出错。

bug重现

解决方法

//安装TypeScript助手的运行时库,包含所有TypeScript辅助函数
npm install -D tslib @types/node  

原因

博客1

console 不属于 EcmaScript 标准。DOM 里面的 console 是浏览器环境下的,属于浏览器BOM API,Node 里面的 console 是 Node.js 里面的,由nodejs自己定义的API,两者虽然有同样的功能,但是并不是同一个东西 。

 

posted @ 2022-07-18 22:12  Strugglinggirl  阅读(474)  评论(0编辑  收藏  举报