21 lines
406 B
TypeScript
21 lines
406 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: "node",
|
|
coverage: {
|
|
provider: "v8",
|
|
reporter: ["text", "cobertura"],
|
|
include: ["src/**/*.ts"],
|
|
exclude: ["src/index.ts"],
|
|
thresholds: {
|
|
lines: 80,
|
|
functions: 80,
|
|
branches: 70,
|
|
statements: 80,
|
|
},
|
|
},
|
|
},
|
|
});
|