From b01323230964dbeb8842bb46b7ca2c0bf40d7edc Mon Sep 17 00:00:00 2001 From: typicode Date: Tue, 9 Jan 2024 13:36:37 +0100 Subject: [PATCH] chore: exclude test files from the build output --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index c0829c2..0e8a67f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,7 @@ { "extends": "@sindresorhus/tsconfig", + "exclude": ["src/**/*.test.ts"], "compilerOptions": { - "outDir": "./lib", + "outDir": "./lib" } -} \ No newline at end of file +}