mirror of
https://github.com/morten-olsen/reservoir.git
synced 2026-02-08 01:46:24 +01:00
15 lines
344 B
TypeScript
15 lines
344 B
TypeScript
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;
|
|
});
|