Skip to content

Commit

Permalink
feat: ⬆️ upgrade jest deps
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideSegullo committed May 31, 2024
1 parent 66200c7 commit 57dbec7
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 deletions.
Binary file modified bun.lockb
Binary file not shown.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"@babel/preset-env": "^7.24.5",
"@inlang/cli": "^2.11.0",
"@octokit/rest": "^20.1.1",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"babel-jest": "^29.7.0",
Expand All @@ -67,7 +68,7 @@
"node-gyp": "^10.1.0",
"prettier": "^2.8.8",
"semver": "^7.6.2",
"ts-jest": "^29.1.2",
"ts-jest": "^29.1.4",
"turbo": "^1.13.3",
"typescript": "5.4.3"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/bridge/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"devDependencies": {
"@types/jest-in-case": "^1.0.6",
"jest-in-case": "^1.0.2",
"ts-jest": "^29.1.0",
"ts-jest": "^29.1.4",
"typescript": "^5.4.3"
},
"lint-staged": {
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"devDependencies": {
"@types/jest-in-case": "^1.0.6",
"jest-in-case": "^1.0.2",
"ts-jest": "^29.1.0",
"ts-jest": "^29.1.4",
"typescript": "^5.4.3"
},
"lint-staged": {
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"devDependencies": {
"@types/jest-in-case": "^1.0.6",
"jest-in-case": "^1.0.2",
"ts-jest": "^29.1.0"
"ts-jest": "^29.1.4"
},
"lint-staged": {
"*": [
Expand Down
2 changes: 1 addition & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
"regenerator-runtime": "^0.13.11",
"sass": "^1.49.9",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.1.0",
"ts-jest": "^29.1.4",
"tsconfig-paths": "^4.2.0",
"use-debugger-hooks": "^1.3.0"
}
Expand Down
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */

"resolveJsonModule": true,
"skipLibCheck": true
"skipLibCheck": true,
"types": ["jest"],
"lib": ["ES2019", "DOM"]
}
}

0 comments on commit 57dbec7

Please sign in to comment.