rallly/apps/web/vitest.config.ts
2024-02-24 01:12:05 +00:00

14 lines
266 B
TypeScript

/// <reference types="vitest" />
import path from "path";
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
exclude: ["**/*.spec.ts"],
},
resolve: {
alias: {
"@": path.resolve(__dirname, "src"),
},
},
});