Skip to content

Commit 6763f7b

Browse files
committed
Turn off skipLibCheck for typetests
1 parent bcddc68 commit 6763f7b

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

packages/toolkit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"format:check": "prettier --list-different \"(src|examples)/**/*.{ts,tsx}\" \"docs/*/**.md\"",
8686
"lint": "eslint src examples",
8787
"test": "jest --runInBand",
88-
"type-tests": "yarn tsc -p src/tests && yarn tsc -p src/query/tests",
88+
"type-tests": "yarn tsc -p src/tests/tsconfig.typetests.json && yarn tsc -p src/query/tests/tsconfig.typetests.json",
8989
"prepack": "npm run build-prepare"
9090
},
9191
"files": [
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": "../../../tsconfig.test.json",
3+
"compilerOptions": {
4+
"skipLibCheck": true
5+
}
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": "../../tsconfig.test.json",
3+
"compilerOptions": {
4+
"skipLibCheck": true
5+
}
6+
}

0 commit comments

Comments
 (0)