From e5714e63c024e2ca0ba911bcdeaad4387f59095f Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Mon, 4 Apr 2022 15:16:41 -0700 Subject: [PATCH] Fix tsconfig file --- packages/cypress/tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cypress/tsconfig.json b/packages/cypress/tsconfig.json index 64d5521e0..297d3e23c 100644 --- a/packages/cypress/tsconfig.json +++ b/packages/cypress/tsconfig.json @@ -13,9 +13,9 @@ "resolveJsonModule": true, "isolatedModules": true, "jsx": "preserve", - "types": ["node", "jest", "@testing-library/jest-dom"], + "types": ["node"], "incremental": true }, - "include": ["additional.d.ts", "next-env.d.ts", "**/*.ts", "**/*.tsx"], + "include": ["**/*.ts", "**/*.tsx"], "exclude": ["node_modules"] }