๐Ÿ“ฆ antongolub / git-glob-cp

๐Ÿ“„ vitest.config.js ยท 14 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14import { defineConfig } from 'vitest/config'

export default defineConfig({
  test: {
    include: ['src/test/{ts,js}/*.test.{ts,cjs,mjs,js}'],
    coverage: {
      reportsDirectory: 'coverage',
      include: ['src/main'],
      provider: 'v8',
      reporter: ['text', 'html'],
    },
  },
})