From e3c60647dcd18ca476a6ad189413cb832a237910 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Fri, 18 Mar 2022 15:17:32 -0500 Subject: [PATCH] tsconfig: exclude Jest files --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index cead8687c..20d08e4b1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,5 +10,6 @@ "moduleResolution": "node", "experimentalDecorators": true, "allowSyntheticDefaultImports": true - } + }, + "exclude": ["**/*.test.*", "**/__mocks__/*", "**/__tests__/*"] }