banatie-service/vitest.config.ts

24 lines
546 B
TypeScript

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
environment: "node",
include: ["**/*.test.ts", "**/*.spec.ts"],
exclude: ["**/node_modules/**", "**/dist/**", "**/.next/**"],
coverage: {
provider: "v8",
reporter: ["text", "json", "html"],
exclude: [
"**/node_modules/**",
"**/dist/**",
"**/.next/**",
"**/coverage/**",
"**/*.config.{js,ts}",
"**/*.spec.ts",
"**/*.test.ts",
],
},
},
});