From 4ca68d7b497b84b44a47139617ee6722072d3d74 Mon Sep 17 00:00:00 2001 From: Alexander Cerutti Date: Mon, 12 Feb 2024 00:34:24 +0100 Subject: [PATCH] Changed tsconfig.build.json to exclude specs instead of including just source --- tsconfig.build.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tsconfig.build.json b/tsconfig.build.json index e90927e..2e2f587 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -18,5 +18,10 @@ "noImplicitReturns": true, "lib": ["DOM", "ES2018", "ES2020"] }, - "include": ["packages/**/src/**/*"] + /** + * Just for the sample, as it seems to include the specs files. + * This is valid as long as we keep the tests in TS, as we plan + * to move them to JS + TSDoc + */ + "exclude": ["packages/**/specs/**/*"] }