Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Commit f5cb2fe

Browse files
update(ts-jest): update ts-config configuratin for 6.27 (#318)
This removes warnings about deprecated configuration option: ```text tsConfig` is depecrated and will be removed in ts-jest 27 ``` kulshekhar/ts-jest@8fec681 Thanks!
1 parent 39a8f20 commit f5cb2fe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ Jest's configuration lives in `jest.config.js`, so let's open it up and add the
497497
module.exports = {
498498
globals: {
499499
'ts-jest': {
500-
tsConfigFile: 'tsconfig.json'
500+
tsconfigFile: 'tsconfig.json'
501501
}
502502
},
503503
moduleFileExtensions: [

jest.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = {
22
globals: {
33
"ts-jest": {
4-
tsConfig: "tsconfig.json"
4+
tsconfig: "tsconfig.json"
55
}
66
},
77
moduleFileExtensions: [

0 commit comments

Comments
 (0)