Files

8 lines
259 B
TypeScript

import type { mergeWithRules } from 'webpack-merge';
export declare type MergeRules = Parameters<typeof mergeWithRules>[0];
export interface CustomWebpackBuilderConfig {
path?: string;
mergeRules?: MergeRules;
replaceDuplicatePlugins?: boolean;
}