@luban-cli/cli-lib-service
Version:
A development runtime environment dependency for lib
14 lines (13 loc) • 406 B
TypeScript
import { Compiler } from "webpack";
interface CleanUpStatsPluginOptions {
MiniCSSExtractPlugin?: boolean;
tsLoader?: boolean;
}
declare class CleanUpStatsPlugin {
private option;
constructor(option?: CleanUpStatsPluginOptions);
shouldPickStatChild(child: any): boolean;
shouldPickWarning(message: any): boolean;
apply(compiler: Compiler): void;
}
export { CleanUpStatsPlugin };