Skip to content

Commit 411e407

Browse files
committed
Fix ts-jest deprecation warning
1 parent 6e83c2b commit 411e407

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@
3838
"json"
3939
],
4040
"transform": {
41-
".+\\.tsx?$": "ts-jest"
41+
".+\\.tsx?$": [
42+
"ts-jest",
43+
{
44+
"babelConfig": false
45+
}
46+
]
4247
},
4348
"testMatch": [
4449
"<rootDir>/tests/**/*.test.(ts|js)"
45-
],
46-
"globals": {
47-
"ts-jest": {
48-
"babelConfig": false
49-
}
50-
}
50+
]
5151
}
52-
}
52+
}

0 commit comments

Comments
 (0)