From 8bd526135265c0636675c2ec8ee2748caba72c14 Mon Sep 17 00:00:00 2001 From: Elias Nahum Date: Fri, 18 Mar 2022 13:38:13 -0300 Subject: [PATCH] Exclude detox from typescript check (#6065) --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index a58d0f3143..352a3f1257 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -53,7 +53,6 @@ "@share/*": ["share_extension/*"], "@store": ["app/store/index"], "@store/*": ["app/store/*"], - "@support/*": ["detox/e2e/support/*"], "@telemetry/*": ["/app/telemetry/*"], "@typings/*": ["types/*"], "@test/*": ["test/*"], @@ -65,12 +64,13 @@ ] } }, - "include": ["app/**/*", "share_extensionn/**/*", "test/**/*", "detox/**/*", "types/**/*"], + "include": ["app/**/*", "share_extensionn/**/*", "test/**/*", "types/**/*"], "exclude": [ "node_modules", "build", "babel.config.js", "metro.config.js", "jest.config.js", + "detox/**/*", ], }