es-toolkit/vitest.config.mts
Minsoo Kim cf65b2c601
style(*): Setup prettier and apply formatting (#24)
* chore: add prettierrc

* chore: apply format with prettier config

* chore: eslint error fix
2024-06-04 17:19:26 +09:00

13 lines
246 B
TypeScript

import { defineConfig } from 'vitest/config';
import packageJson from './package.json';
export default defineConfig({
test: {
name: packageJson.name,
coverage: {
provider: 'istanbul',
include: ['src/**/*'],
},
},
});