mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
18 lines
346 B
TypeScript
18 lines
346 B
TypeScript
import CleanWebpackPlugin = require('clean-webpack-plugin');
|
|
|
|
const paths = [
|
|
'path',
|
|
'glob/**/*.js',
|
|
];
|
|
|
|
new CleanWebpackPlugin(paths);
|
|
new CleanWebpackPlugin(paths, 'root-directory');
|
|
new CleanWebpackPlugin(paths, {});
|
|
new CleanWebpackPlugin(paths, {
|
|
root: 'root-directory',
|
|
verbose: true,
|
|
dry: true,
|
|
watch: true,
|
|
exclude: ['a, b'],
|
|
});
|