From e67b91954be837e53fbc2d5a0b19c5d336b5e914 Mon Sep 17 00:00:00 2001 From: Ross Reicks Date: Thu, 11 Jan 2024 09:27:49 -0600 Subject: [PATCH] chore: update tsconfig to not output test files --- tsconfig.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index e6f5525..b07048f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,6 +6,9 @@ "target": "es2019", "outDir": "./lib", "declaration": true, - "esModuleInterop": true - } + "esModuleInterop": true, + }, + "include": [ + "./src/**/*" + ] }