Skip to content

Commit

Permalink
fix: add @types/jest as a regular dependency
Browse files Browse the repository at this point in the history
Without it, TypeScript projects not using Jest
and not having it already in dependencies
would fail on compiling (unless having skipLibCheck option enabled).
  • Loading branch information
m-radzikowski committed Jun 27, 2022
1 parent edf1d89 commit c51c9d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@
"src"
],
"dependencies": {
"@types/sinon": "10.0.10",
"@types/sinon": "^10.0.10",
"@types/jest": "^28.1.3",
"sinon": "^11.1.1",
"tslib": "^2.1.0"
},
Expand All @@ -58,7 +59,6 @@
"@commitlint/cli": "13.1.0",
"@commitlint/config-conventional": "13.1.0",
"@size-limit/preset-small-lib": "5.0.3",
"@types/jest": "28.1.3",
"@types/node": "14.14.31",
"@typescript-eslint/eslint-plugin": "5.28.0",
"@typescript-eslint/parser": "5.28.0",
Expand Down

0 comments on commit c51c9d9

Please sign in to comment.