Skip to content

Commit

Permalink
fix: move tests out of main src folder
Browse files Browse the repository at this point in the history
  • Loading branch information
tobloef committed Jan 9, 2024
1 parent 2cca7bd commit 8a95b23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions src/test.ts → tests/test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
import {DeepOmit, DeepPick} from "./index";
import {DeepRequire} from "./deep-types/deep-require";
import {DeepOptional} from "./deep-types/deep-optional";
import {KeysAsDotNotation} from "./util-types/keys-as-dot-notation";
import {DeepOmit, DeepPick, DeepRequire, DeepOptional} from "../src";

type Test1 = {
foo1: string;
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"module": "CommonJS",
"baseUrl": "."
},
"include": ["src/**/*.ts"]
"include": ["src/**/*.ts", "tests/**/*.ts"],
}

0 comments on commit 8a95b23

Please sign in to comment.