This commit is contained in:
Morten Olsen
2025-10-23 13:47:07 +02:00
commit b851dc3006
91 changed files with 7578 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;
});