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 f03c20f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f03c20f

Please sign in to comment.