当编译任何只导入的 typescript 程序时mongodb,我收到 12 个错误,例如:
node_modules/mongodb/mongodb.d.ts:3309:5 - error TS2416: Property 'end' in type 'GridFSBucketWriteStream' is not assignable to the same property in base type 'WritableStream'
Run Code Online (Sandbox Code Playgroud)
使用节点 TLS (v16.13.1) 和一个空目录来重现很简单,只需运行:
npm i mongodb typescript
echo "import mongodb from 'mongodb'" > index.ts
npx tsc index
Run Code Online (Sandbox Code Playgroud)