feathers-fletching
Version:
Hooks, services, and plugins for feathers.js
18 lines (16 loc) • 362 B
text/typescript
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
coverage: {
provider: 'c8',
reporter: ['text', 'lcov'],
include: ['src/**/*.{js,ts}'],
exclude: ['**/*.test.{js,ts}', 'src/types.ts'],
lines: 85,
functions: 85,
branches: 85,
statements: 85
}
}
});