es-toolkit/vitest.config.mts
Sojin Park cc06b2d7a3
Some checks are pending
CI / codecov (push) Waiting to run
Release / release (push) Waiting to run
test: Add missing test lines
2024-07-20 12:49:11 +09:00

15 lines
317 B
TypeScript

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