From e1807c9250073a96be0b8aac2abbc7ca80aadb25 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Wed, 6 Jul 2022 11:26:44 -0500 Subject: [PATCH] tsconfig: don't exclude any files --- tsconfig.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 8989bd57e..dba721d72 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,6 +14,5 @@ "experimentalDecorators": true, "esModuleInterop": true, "typeRoots": [ "./types", "./node_modules/@types"] - }, - "exclude": ["node_modules", "types", "**/*.test.*", "**/__mocks__/*", "**/__tests__/*"] + } }