mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
13 lines
228 B
TypeScript
13 lines
228 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
coverage: {
|
|
enabled: true,
|
|
provider: 'istanbul',
|
|
all: false,
|
|
reporter: ['text', 'clover', 'json'],
|
|
},
|
|
},
|
|
})
|