We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0747cfb commit 71ad4d3Copy full SHA for 71ad4d3
packages/packages/generator/src/defaults.ts
@@ -17,7 +17,7 @@ export { ProcessedChain };
17
/**
18
* Deep merge utility for nested objects
19
*/
20
-export function deepMerge<T>(target: T, source: Partial<T>): T {
+export function deepMerge(target: any, source: any): any {
21
const result = { ...target };
22
23
Object.keys(source).forEach((key) => {
0 commit comments