From 30df1caab2222f3607ba84de144b3f7ee2742f3d Mon Sep 17 00:00:00 2001 From: sprout2000 Date: Sat, 26 Aug 2023 10:25:27 +0900 Subject: [PATCH] chore: Remove jest/types --- jest.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jest.config.ts b/jest.config.ts index dc24e9c..804d1a3 100644 --- a/jest.config.ts +++ b/jest.config.ts @@ -1,6 +1,6 @@ -import type { Config } from '@jest/types'; +import type { JestConfigWithTsJest } from 'ts-jest'; -const config: Config.InitialOptions = { +const config: JestConfigWithTsJest = { preset: 'ts-jest', testEnvironment: 'jsdom', collectCoverage: true,