Cloud Functions 的 Firebase 项目中tsconfig.json错误

Error in tsconfig.json in Firebase project for Cloud Functions

提问人:Antonio Lentini 提问时间:11/9/2023 最后编辑:Doug StevensonAntonio Lentini 更新时间:11/9/2023 访问量:30

问:

我尝试启动一个 firebase 项目,但此错误出现在 tsconfig.json

找不到“node”的类型定义文件。 该文件位于程序中,因为: 隐式类型库“node”的入口点

我尝试安装类型,但没有成功npm install @types/node --save-dev

我还尝试安装以前版本的节点,因为错误说“版本无效”,但没有解决问题

node.js typescript firebase npm google-cloud-functions

评论

0赞 50Fifty 11/9/2023
您是否在函数文件夹内运行?npm install @types/node --save-dev
0赞 Antonio Lentini 11/9/2023
是的,我运行并安装了类型,但问题没有解决。我应该在tsconfig.json里放点东西吗?
0赞 50Fifty 11/10/2023
尝试在tsconfig.json下添加。"types": ["node"]compilerOptions

答: 暂无答案