From 62d4a6ed52ba70db9f1191b7011a483840f5b5a0 Mon Sep 17 00:00:00 2001 From: vbetsch Date: Fri, 10 Apr 2026 17:47:52 +0200 Subject: [PATCH] fix: exclude coverage in tsconfig --- tsconfig.build.json | 4 ++-- tsconfig.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tsconfig.build.json b/tsconfig.build.json index 6a1b54a..55d8b62 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -2,10 +2,10 @@ "exclude": [ "**/*.spec.ts", "**/*.test.ts", + "**/coverage/**", "**/dist/**", "**/node_modules/**", - "**/tests/**", - "jest.config.ts" + "**/tests/**" ], "extends": ["./tsconfig.json", "@vbetsch/config-tsconfig/build/base"], "compilerOptions": { diff --git a/tsconfig.json b/tsconfig.json index 932d467..4e24317 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,5 @@ { - "exclude": ["**/node_modules/**", "**/dist/**"], + "exclude": ["**/node_modules/**", "**/dist/**", "**/coverage/**"], "extends": ["@vbetsch/config-tsconfig/base", "@vbetsch/config-tsconfig/strict"], /* Overrides */ "compilerOptions": {