9 lines
195 B
TypeScript
9 lines
195 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
coverage: { provider: 'v8', reporter: ['text', 'json-summary'] },
|
|
include: ['**/*.test.ts'],
|
|
},
|
|
})
|