You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add @types/tmp to devDeps
Not including it in devDeps means that `strict: true` TSC projects
using mongoms currently fail to compile with:
```
node_modules/mongodb-memory-server-core/lib/MongoMemoryServer.d.ts:3:22 - error TS7016:
Could not find a declaration file for module 'tmp'.
'node_modules/mongodb-memory-server-core/node_modules/tmp/lib/tmp.js' implicitly has an 'any' type.
Try `npm install @types/tmp` if it exists or add a new declaration (.d.ts) file containing `declare module 'tmp';`
3 import * as tmp from 'tmp';
~~~~~
```
* pr fix
0 commit comments