webpack-split-chunks-analyzer
Version:
Debug how your application is dynamically loaded by webpack
14 lines • 450 B
TypeScript
import type { Compiler } from "webpack";
export interface SplitChunksAnalyzerOptions {
excludePattern?: RegExp[];
outputFile?: string | string[];
openOnFinish?: boolean;
}
export declare class SplitChunksAnalyzerPlugin {
private options;
private compiler;
constructor(userOptions?: SplitChunksAnalyzerOptions);
apply(compiler: Compiler): void;
private analyze;
}
//# sourceMappingURL=SplitChunksAnalyzerPlugin.d.ts.map