rallly/apps/web/vitest.config.mts
2025-04-28 19:47:47 +01:00

15 lines
312 B
TypeScript

import path from "node:path";
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
include: ["**/*.test.ts"],
exclude: ["**/node_modules/**", "**/*.spec.ts"],
},
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
});