Skip to content

Commit ee93a35

Browse files
committed
fix: clean up tsconfigs
1 parent b803d8e commit ee93a35

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

test/tsconfig.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
{
22
"extends": "../tsconfig.json",
3+
"compilerOptions": {
4+
"typeRoots": [
5+
"node_modules/@types"
6+
],
7+
},
38
"include": ["./**/*.ts"],
4-
"exclude": ["node_modules/**"]
9+
"exclude": ["node_modules/**"],
10+
"types": ["jest"]
511
}

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,6 @@
1919
"typeRoots": ["./node_modules/@types", "./typings"],
2020
"downlevelIteration": true
2121
},
22-
"include": ["./src/**/*.ts"]
22+
"include": ["./src/**/*.ts"],
23+
"exclude": ["./test"]
2324
}

0 commit comments

Comments
 (0)