Skip to content

Commit

Permalink
🔧 Clean warnings related to ts-jest (#130)
Browse files Browse the repository at this point in the history
```txt
ts-jest[config] (WARN) The option `tsConfig` is deprecated and will be removed in ts-jest 27, use `tsconfig` instead
```
  • Loading branch information
dubzzz committed Nov 5, 2020
1 parent 4fed949 commit 0322eb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = {
moduleFileExtensions: ['js', 'jsx', 'ts', 'tsx'],
globals: {
'ts-jest': {
tsConfig: 'tsconfig.json',
tsconfig: 'tsconfig.json',
},
},
testMatch: ['<rootDir>/test/**/*.spec.ts'],
Expand Down

0 comments on commit 0322eb5

Please sign in to comment.