Skip to content

Commit

Permalink
ts-jest: lowercase C (#4980)
Browse files Browse the repository at this point in the history
This should hopefully avoid a ton of warnings like

ts-jest[config] (WARN) The option `tsConfig` is deprecated and will be removed in ts-jest 27, use `tsconfig` instead

with no other effects.
  • Loading branch information
glasser committed Mar 3, 2021
1 parent 80a9747 commit 1925335
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jest.config.base.js
Expand Up @@ -26,7 +26,7 @@ module.exports = {
clearMocks: true,
globals: {
"ts-jest": {
tsConfig: "<rootDir>/src/__tests__/tsconfig.json",
tsconfig: "<rootDir>/src/__tests__/tsconfig.json",
diagnostics: false
}
}
Expand Down

0 comments on commit 1925335

Please sign in to comment.