This commit is contained in:
Morten Olsen
2025-09-08 22:22:40 +02:00
commit 1b02bc8e81
30 changed files with 5459 additions and 0 deletions

14
vitest.config.ts Normal file
View File

@@ -0,0 +1,14 @@
import { defineConfig, type UserConfigExport } from 'vitest/config';
// eslint-disable-next-line import/no-default-export
export default defineConfig(async () => {
const config: UserConfigExport = {
test: {
coverage: {
provider: 'v8',
include: ['packages/**/src/**/*.ts'],
},
},
};
return config;
});