mirror of
https://github.com/larchanka/manbot.git
synced 2026-05-13 13:39:40 +00:00
17 lines
458 B
TypeScript
17 lines
458 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ["src/**/*.test.ts", "src/**/__tests__/**/*.ts"],
|
|
exclude: ["**/node_modules/**", "**/dist/**"],
|
|
environment: "node",
|
|
globals: false,
|
|
coverage: {
|
|
provider: "v8",
|
|
reporter: ["text", "json", "html", "lcov", "json-summary"],
|
|
include: ["src/**/*.ts"],
|
|
exclude: ["src/**/*.test.ts", "src/**/__tests__/**"],
|
|
},
|
|
},
|
|
});
|