From ff89a7ffc8b9b66ee9192dd57ce3726e4e772441 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Wed, 19 Jun 2024 15:21:37 +0200 Subject: [PATCH] fix: Do not include test files in `dist` Signed-off-by: Ferdinand Thiessen --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index f713b24..c57f039 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,6 @@ { "include": ["lib/**/*.ts"], + "exclude": ["lib/**/*.spec.ts"], "compilerOptions": { "rootDir": "lib", "target": "ESNext",