docker 运行npm运行开始:开发人员产生错误“无法找到模块”ssh 2-streams“”

atmip9wb  于 2023-03-07  发布在  Docker
关注(0)|答案(1)|浏览(147)

我正在Linux Mint 20操作系统中使用docker Nodejs应用程序,我可以成功运行docker-compose。但当尝试使用npm run start:dev启动应用程序时,它开始监视,然后显示以下错误:

node_modules/node-ssh/lib/typings/index.d.ts:4:41 - error TS2307: Cannot find module 'ssh2-streams' or its corresponding type declarations.
4 import { Prompt, TransferOptions } from 'ssh2-streams';
                                          
[1:30:24 PM] Found 1 error. Watching for file changes.

救命啊!!

ruarlubt

ruarlubt1#

运行这个命令为丢失类型包在你的项目

npm i @types/ssh2-streams -D

相关问题