From 192533507f84ae1442c742d4fc3e4b7e7d6a5f80 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Wed, 3 Mar 2021 13:12:19 -0800 Subject: [PATCH] ts-jest: lowercase C (#4980) 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. --- jest.config.base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jest.config.base.js b/jest.config.base.js index 7dac621c3eb..0954925d886 100644 --- a/jest.config.base.js +++ b/jest.config.base.js @@ -26,7 +26,7 @@ module.exports = { clearMocks: true, globals: { "ts-jest": { - tsConfig: "/src/__tests__/tsconfig.json", + tsconfig: "/src/__tests__/tsconfig.json", diagnostics: false } }