Skip to content

Commit 5fbf43e

Browse files
authored
fix: add @types/jest as optional peerDependencies to solve yarn 2 (#2756)
1 parent 310fb9a commit 5fbf43e

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,18 @@
7171
"jest": "^27.0.0",
7272
"typescript": ">=3.8 <5.0",
7373
"babel-jest": ">=27.0.0 <28",
74-
"@babel/core": ">=7.0.0-beta.0 <8"
74+
"@babel/core": ">=7.0.0-beta.0 <8",
75+
"@types/jest": "^26.0.0"
7576
},
7677
"peerDependenciesMeta": {
7778
"babel-jest": {
7879
"optional": true
7980
},
8081
"@babel/core": {
8182
"optional": true
83+
},
84+
"@types/jest": {
85+
"optional": true
8286
}
8387
},
8488
"husky": {

0 commit comments

Comments
 (0)