generated from nhcarrigan/template
18 lines
385 B
TypeScript
18 lines
385 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
coverage: {
|
|
provider: 'v8',
|
|
reporter: ['text'],
|
|
include: ['src/**/*.ts'],
|
|
exclude: ['src/**/*.spec.ts', 'src/type-challenges/**/*.ts'],
|
|
thresholds: {
|
|
statements: 100,
|
|
branches: 100,
|
|
functions: 100,
|
|
lines: 100,
|
|
},
|
|
},
|
|
},
|
|
}) |