feat: initial commit
This commit is contained in:
13
vitest.config.ts
Normal file
13
vitest.config.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { defineConfig } from 'vitest/config'
|
||||
|
||||
export default defineConfig({
|
||||
test: {
|
||||
coverage: {
|
||||
provider: 'istanbul', // or 'v8'
|
||||
reporter: ['text', 'json-summary', 'json'],
|
||||
all: true,
|
||||
include: ['src/**'],
|
||||
reportsDirectory: './coverage',
|
||||
},
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user