import { defineConfig } from "vitest/config"; import path from "path"; export default defineConfig({ resolve: { alias: { "@muse/shared": path.resolve(__dirname, "../shared/src/index.ts"), }, }, test: { globals: true, include: ["src/**/*.test.ts"], coverage: { provider: "v8", reporter: ["text", "text-summary", "lcov"], include: ["src/**"], exclude: ["src/**/*.test.*"], thresholds: { branches: 80, functions: 80, lines: 80, statements: 80, }, }, }, });