UNPKG

435 BTypeScriptView Raw
1import { Compiler } from 'webpack';
2declare class IgnoreEmitPlugin {
3 private readonly options;
4 private readonly DEBUG;
5 private readonly ignorePatterns;
6 constructor(ignoreRegex?: RegExp | string | Array<RegExp | string>, options?: {
7 debug?: boolean;
8 });
9 private normalizeRegex;
10 private checkIgnore;
11 apply(compiler: Compiler): void;
12}
13export { IgnoreEmitPlugin };
14export default IgnoreEmitPlugin;