11 lines
199 B
TypeScript
11 lines
199 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ["src/**/*.{test,spec}.ts"],
|
|
coverage: {
|
|
provider: "v8",
|
|
reporter: ["text", "html"]
|
|
}
|
|
}
|
|
}); |