From a548d3781c59161d4451ca1416b305f8dd2660b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20B=C5=82a=C5=BCejewicz?= Date: Thu, 4 Feb 2021 19:56:38 +0100 Subject: [PATCH] update(ts-jest): update `ts-config` configuratin for 6.27 This removes warnings about deprecated configuration option: ```text tsConfig` is depecrated and will be removed in ts-jest 27 ``` https://github.com/kulshekhar/ts-jest/commit/8fec6816e1b6009c4ba9b41f111c896d3c2fc3f5 Thanks! --- README.md | 2 +- jest.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7c452b4b..5bf82f70 100644 --- a/README.md +++ b/README.md @@ -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: [ diff --git a/jest.config.js b/jest.config.js index 8b81ccd3..4e817d74 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,7 +1,7 @@ module.exports = { globals: { "ts-jest": { - tsConfig: "tsconfig.json" + tsconfig: "tsconfig.json" } }, moduleFileExtensions: [