Icard/angular-clarity-master(work.../node_modules/@angular-builders/custom-webpack/dist/custom-webpack-builder-conf...

12 lines
342 B
TypeScript
Raw Normal View History

2024-07-16 14:55:36 +00:00
import type { mergeWithRules } from 'webpack-merge';
export type MergeRules = Parameters<typeof mergeWithRules>[0];
export interface CustomWebpackBuilderConfig {
path?: string;
mergeRules?: MergeRules;
replaceDuplicatePlugins?: boolean;
verbose?: {
properties?: string[];
serializationDepth?: number;
};
}