2025-05-03 12:20:53 +00:00
|
|
|
import { defineConfig } from 'vitest/config'
|
2025-05-02 14:03:34 +00:00
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
test: {
|
|
|
|
|
globals: true,
|
|
|
|
|
environment: 'node',
|
|
|
|
|
include: ['__tests__/**/*.test.ts'],
|
|
|
|
|
coverage: {
|
2025-05-03 12:20:53 +00:00
|
|
|
include: ['src/**/*.ts'], // Only target the src directory
|
|
|
|
|
exclude: ['lib/**'], // Exclude the lib directory
|
|
|
|
|
reporter: ['text', 'json', 'html', 'lcov']
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|