From 651205ae28f9dfcb7990530027025e5410050fbc Mon Sep 17 00:00:00 2001 From: Lassi Kortela Date: Thu, 11 Oct 2018 21:32:23 +0300 Subject: [PATCH] Fix Jest config deprecation warnings (#200) --- jest.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jest.config.js b/jest.config.js index 1028642d..e5a668a7 100644 --- a/jest.config.js +++ b/jest.config.js @@ -26,8 +26,8 @@ module.exports = { ], globals: { "ts-jest": { - tsConfigFile: "tsconfig.json", - enableTsDiagnostics: true, + tsConfig: "tsconfig.json", + diagnostics: true, }, }, };