From b35c0d42955f30e3cf514d89654bf4e62a476a1d Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Thu, 4 Aug 2022 13:20:26 +0200 Subject: [PATCH] add e2e tests to tsconfig --- src/Umbraco.Web.UI.Client/tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/tsconfig.json b/src/Umbraco.Web.UI.Client/tsconfig.json index 5433d1796f..b1711881a6 100644 --- a/src/Umbraco.Web.UI.Client/tsconfig.json +++ b/src/Umbraco.Web.UI.Client/tsconfig.json @@ -23,11 +23,12 @@ "skipLibCheck": true }, "include": [ - "src/**/*.ts" + "src/**/*.ts", + "e2e/**/*.ts", ], "references": [ { "path": "./tsconfig.node.json" } ] -} \ No newline at end of file +}