init
This commit is contained in:
14
vitest.config.ts
Normal file
14
vitest.config.ts
Normal 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;
|
||||
});
|
||||
Reference in New Issue
Block a user