18 lines
360 B
TypeScript
18 lines
360 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ["tests/**/*.test.ts"],
|
|
coverage: {
|
|
provider: "v8",
|
|
include: ["src/**/*.ts"],
|
|
exclude: ["src/index.ts"],
|
|
thresholds: {
|
|
lines: 90,
|
|
functions: 90,
|
|
branches: 90,
|
|
statements: 90,
|
|
},
|
|
},
|
|
},
|
|
});
|