From 9a3be51d6f63bf339098fbab3735fdda935cce35 Mon Sep 17 00:00:00 2001 From: Jamie Rolfs Date: Mon, 27 Feb 2023 14:49:49 -0800 Subject: [PATCH] feat(config/jest): disable diagnostics entirely when using ts-jest See: 'https://kulshekhar.github.io/ts-jest/docs/getting-started/options/diagnostics#disablingenabling' --- src/config/jest.config.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/config/jest.config.js b/src/config/jest.config.js index fdf74a26..08c90d9c 100644 --- a/src/config/jest.config.js +++ b/src/config/jest.config.js @@ -44,9 +44,7 @@ const jestConfig = { require.resolve(transformer), { ...options, - diagnostics: { - warnOnly: true, - }, + diagnostics: false, }, ], ],