Skip to content

Commit

Permalink
update(ts-jest): update ts-config configuratin for 6.27 (#318)
Browse files Browse the repository at this point in the history
This removes warnings about deprecated configuration option:

```text
tsConfig` is depecrated and will be removed in ts-jest 27
```

kulshekhar/ts-jest@8fec681

Thanks!
  • Loading branch information
peterblazejewicz authored Feb 5, 2021
1 parent 0fa1567 commit 51b7b21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ Jest's configuration lives in `jest.config.js`, so let's open it up and add the
module.exports = {
globals: {
'ts-jest': {
tsConfigFile: 'tsconfig.json'
tsconfigFile: 'tsconfig.json'
}
},
moduleFileExtensions: [
Expand Down
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
globals: {
"ts-jest": {
tsConfig: "tsconfig.json"
tsconfig: "tsconfig.json"
}
},
moduleFileExtensions: [
Expand Down

0 comments on commit 51b7b21

Please sign in to comment.