From 8bb5ed7e3db358e0846e7f6bb0fa8b2fe20afc10 Mon Sep 17 00:00:00 2001 From: Chang Cao Date: Thu, 15 Sep 2022 19:56:05 +0800 Subject: [PATCH] fix: 'ts-jest' should be optional in ConfigGlobals --- src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index 14ae3948b9..810641d7ca 100644 --- a/src/types.ts +++ b/src/types.ts @@ -17,7 +17,7 @@ declare module '@jest/types' { */ // eslint-disable-next-line // @ts-ignore - 'ts-jest': TsJestGlobalOptions + 'ts-jest'?: TsJestGlobalOptions } } }