Skip to content

Commit

Permalink
* Fixed incorrect filename casing.
Browse files Browse the repository at this point in the history
* Fixed IDE warning about build directory being excluded from tsconfig.json.
  • Loading branch information
cowwoc committed Sep 8, 2024
1 parent 319c3a7 commit cd7dbce
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/internal/validator/Objects.mts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
TypeCategory,
AssertionError
} from "../internal.mjs";
import isEqual from "lodash.isEqual";
import isEqual from "lodash.isequal";

type ElementOf<T> = T extends readonly (infer E)[] ? E : (T extends Set<infer E> ? E : never);
// eslint-disable-next-line @typescript-eslint/no-explicit-any
Expand Down
1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
"node_modules",
"target",
"eslint.config.mjs",
"./build",
"./test/TestGlobalConfiguration.mts"
],
"declaration": true
Expand Down

0 comments on commit cd7dbce

Please sign in to comment.