@daqi/useless-files-webpack5-plugin
Version:
watch webpack project useless files
19 lines (16 loc) • 432 B
Markdown
# @daqi/useless-files-webpack5-plugin
## example
```js
module.exports = {
....
plugins:[
new UnusedFilesW5WebpackPlugin({
root: ['./src', './mock'] // It can also be a string './xxxx',
clean: false,
excludeSuffix: ['.d.ts','.js'],
output: './useless-files.json',
exclude: ['xxx.mock.js','m.xxx.js'], // t can also be a string 'xxxx.js',
}),
]
}
```