mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-04 15:39:42 +08:00
12 lines
199 B
TypeScript
12 lines
199 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
restoreMocks: true,
|
|
coverage: {
|
|
reporter: ['text', 'json', 'html']
|
|
}
|
|
}
|
|
})
|