I'm currently in the middle of upgrading to webpack 5 and this package is now giving me a type error:
node_modules/.pnpm/html-webpack-harddisk-plugin@2.0.0_567a27a819cc7a6a0873c1471c083c1f/node_modules/html-webpack-harddisk-plugin/index.d.ts:1:10 - error TS2305: Module '"../../../../webpack/types"' has no exported member 'Plugin'.
1 import { Plugin } from 'webpack';
~~~~~~
The problem is here: https://github.com/jantimon/html-webpack-harddisk-plugin/blob/main/index.d.ts#L1
I believe Plugin is no longer a valid export from webpack. Maybe you need to switch to WebpackPluginInstance instead?
I'm currently in the middle of upgrading to webpack 5 and this package is now giving me a type error:
The problem is here: https://github.com/jantimon/html-webpack-harddisk-plugin/blob/main/index.d.ts#L1
I believe
Pluginis no longer a valid export from webpack. Maybe you need to switch toWebpackPluginInstanceinstead?