mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add initial version of purifycss-webpack. * Fill out test. * Add recommendations from linter. * Remove types reference.
17 lines
330 B
TypeScript
17 lines
330 B
TypeScript
import PurifyPlugin from 'purifycss-webpack';
|
|
|
|
new PurifyPlugin({
|
|
styleExtensions: ['.css'],
|
|
minimize: true,
|
|
moduleExtensions: ['.js'],
|
|
paths: [''],
|
|
verbose: true,
|
|
purifyOptions: {
|
|
minify: false,
|
|
output: '',
|
|
info: false,
|
|
rejected: false,
|
|
whitelist: [''],
|
|
},
|
|
});
|