es-toolkit/vitest.config.mts
Dayong Lee 23aa7db57d
style(format): add sorting imports plugin and fix eslint config (#625)
* Add prettier sort

* Fix prettier setting in eslint

* Apply prettier

* Fix depdencies

* Add .yarn folder in excludes of vitest

* Revert pick I don't know why this is changed
2024-10-01 14:00:45 +09:00

16 lines
360 B
TypeScript

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