test: misc test dir type fixes
This commit is contained in:
@@ -17,7 +17,6 @@ export default function deepMerge<T extends object, R extends object>(target: T,
|
||||
if (isObject(target) && isObject(source)) {
|
||||
Object.keys(source).forEach((key) => {
|
||||
if (isObject(source[key])) {
|
||||
// @ts-expect-error
|
||||
if (!(key in target)) {
|
||||
Object.assign(output, { [key]: source[key] })
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user