diff --git a/src/internal/validator/Objects.mts b/src/internal/validator/Objects.mts index e43fbc8..c1cf44b 100644 --- a/src/internal/validator/Objects.mts +++ b/src/internal/validator/Objects.mts @@ -3,7 +3,7 @@ import { TypeCategory, AssertionError } from "../internal.mjs"; -import isEqual from "lodash.isEqual"; +import isEqual from "lodash.isequal"; type ElementOf = T extends readonly (infer E)[] ? E : (T extends Set ? E : never); // eslint-disable-next-line @typescript-eslint/no-explicit-any diff --git a/tsconfig.json b/tsconfig.json index f8a3726..fcb15ac 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -20,13 +20,13 @@ "include": [ // Files used to generate the target directory "./src", - "./test" + "./test", + "./build" ], "exclude": [ "node_modules", "target", "eslint.config.mjs", - "./build", "./test/TestGlobalConfiguration.mts" ], "declaration": true