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