From ae06f4230d258544701cabdb928d1075fe5d34b6 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Mon, 4 Apr 2022 12:29:07 -0400 Subject: [PATCH] chore(): exclude stencil tests from type checking (#25052) --- core/tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/tsconfig.json b/core/tsconfig.json index 45b29de257..262bd95fc5 100644 --- a/core/tsconfig.json +++ b/core/tsconfig.json @@ -34,6 +34,9 @@ "src", ], "exclude": [ - "node_modules" + "node_modules", + "**/test/**/*.spec.ts", + "**/test/**/*.spec.tsx", + "**/test/**/e2e.ts" ] }