🧪 Added Vitest configuration with coverage

This commit is contained in:
Thomas Müller
2025-04-29 13:43:40 +02:00
parent f6bbcd8b2e
commit 25353662ec
2 changed files with 19 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
coverage: {
reporter: ['text', 'html', 'lcov'],
include: ['src/**/*.ts'],
exclude: ['src/**/*.test.ts', 'test/**'],
},
},
});