From e140472c055368f789e647279422f64aa434ab00 Mon Sep 17 00:00:00 2001 From: Hanna Tarasevich Date: Tue, 31 Dec 2024 10:59:59 +0100 Subject: [PATCH] Exclude types file from vitest --- vitest.conf.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vitest.conf.ts b/vitest.conf.ts index a612251..fcb8638 100644 --- a/vitest.conf.ts +++ b/vitest.conf.ts @@ -15,7 +15,7 @@ export default defineConfig({ reporter: ['text'], provider: "v8", enabled: true, - exclude: ['**/dist/**', '**/__mocks__/**', '**/__fixtures__/**', '**/*.test.ts'], + exclude: ['**/dist/**', '**/__mocks__/**', '**/__fixtures__/**', '**/*.test.ts', '**/src/types/**', '**/src/types.ts'], thresholds: { lines: 99, functions: 95,