generated from nhcarrigan/template
All checks were successful
Node.js CI / Lint and Test (push) Successful in 41s
19 lines
346 B
TypeScript
19 lines
346 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
coverage: {
|
|
provider: "istanbul",
|
|
reporter: ["text", "html"],
|
|
all: true,
|
|
allowExternal: true,
|
|
thresholds: {
|
|
lines: 100,
|
|
statements: 100,
|
|
branches: 100,
|
|
functions: 100,
|
|
},
|
|
},
|
|
},
|
|
});
|