This commit is contained in:
Morten Olsen
2024-12-10 20:59:29 +01:00
commit ede2d56b7c
54 changed files with 6955 additions and 0 deletions

14
vitest.config.ts Normal file
View File

@@ -0,0 +1,14 @@
/// <reference types="vitest" />
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
coverage: {
reporter: ['text', 'json-summary', 'json', 'html'],
reportOnFailure: true,
include: ['packages/*/src/**/*.ts'],
exclude: ['packages/tests/**/*'],
},
},
});