UNPKG

342 BTypeScriptView Raw
1import type { mergeWithRules } from 'webpack-merge';
2export type MergeRules = Parameters<typeof mergeWithRules>[0];
3export interface CustomWebpackBuilderConfig {
4 path?: string;
5 mergeRules?: MergeRules;
6 replaceDuplicatePlugins?: boolean;
7 verbose?: {
8 properties?: string[];
9 serializationDepth?: number;
10 };
11}