12 lines
271 B
TypeScript
12 lines
271 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
coverage: {
|
|
reporter: ["text", "html", "lcov"],
|
|
include: ["src/**/*.ts"],
|
|
exclude: ["src/**/*.test.ts", "test/**"],
|
|
},
|
|
},
|
|
});
|