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 Apr 25, 2026. It is now read-only.
clean-webpack-plugin's dependency to package "del": "^4.1.1" now causes TypeScript compilation failure in projects that has a more recent version of glob or minimatch installed.
del<=4.1.1 pulls in and outdated version of @types/glob as dependency - this should have been a devDependency.
This has been fixed in more recent version of del.
Right now, clean-webpack-plugin causes TypeScript build failure unless skipLibCheck compiler option is set to true.
Please fix by updating del to a latest (or more recent) version!
Issue description or question
clean-webpack-plugin's dependency to package"del": "^4.1.1"now causes TypeScript compilation failure in projects that has a more recent version ofgloborminimatchinstalled.del<=4.1.1pulls in and outdated version of@types/globas dependency - this should have been a devDependency.This has been fixed in more recent version of
del.Right now, clean-webpack-plugin causes TypeScript build failure unless
skipLibCheckcompiler option is set to true.Please fix by updating
delto a latest (or more recent) version!