Skip to content

Commit

Permalink
fix compiler config
Browse files Browse the repository at this point in the history
  • Loading branch information
mrazauskas committed Feb 4, 2022
1 parent 63cb9ec commit f575aad
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
9 changes: 6 additions & 3 deletions packages/expect/__typechecks__/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"extends": "../../../tsconfig.json",
"extends": "@tsconfig/node10/tsconfig.json",
"compilerOptions": {
"skipLibCheck": true
}
"isolatedModules": true,
"skipLibCheck": true,
"strict": true
},
"include": ["**/*"]
}
9 changes: 6 additions & 3 deletions packages/jest-types/__typechecks__/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"extends": "../../../tsconfig.json",
"extends": "@tsconfig/node10/tsconfig.json",
"compilerOptions": {
"skipLibCheck": true
}
"isolatedModules": true,
"skipLibCheck": true,
"strict": true
},
"include": ["**/*"]
}

0 comments on commit f575aad

Please sign in to comment.