Files

15 lines
275 B
TypeScript
Raw Permalink Normal View History

2026-05-07 22:09:10 +00:00
import { defineConfig } from "vitest/config";
import path from "path";
export default defineConfig({
test: {
environment: "node",
include: ["src/**/*.test.ts"],
},
resolve: {
alias: {
"@shared": path.resolve(__dirname, "src/shared"),
},
},
});