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
{{ message }}
This repository was archived by the owner on Mar 19, 2026. It is now read-only.
I'm not sure, but it seems that this library is incompatible with any other library using rimraf, since v5 (or 4) it no longer exists the need for @types/rimraf and it collides with newer versions of rimraf, in my case on a NestJs (v10) application:
node_modules/@types/rimraf/index.d.ts:33:21 - error TS2694: Namespace '"./node_modules/glob/dist/mjs/index"' has no exported member 'IOptions'.
33 glob?: glob.IOptions | false | undefined;
I'm not sure, but it seems that this library is incompatible with any other library using
rimraf, since v5 (or 4) it no longer exists the need for@types/rimrafand it collides with newer versions ofrimraf, in my case on a NestJs (v10) application:Acording to https://stackoverflow.com/questions/75890950/node-modules-minimatch-dist-cjs-index-has-no-exported-member-ioptions, by simply updating this dependency the issue would be solved.
Thanks! (and hope this is the right place to place this issue/doubt)