rallly/apps/web/vitest.config.mts

15 lines
307 B
TypeScript

import path from "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"),
},
},
});