import { fileURLToPath } from 'node:url'; import { defineConfig } from 'vitest/config'; export default defineConfig({ resolve: { alias: { '@lib': fileURLToPath(new URL('./src/lib', import.meta.url)), }, }, test: { environment: 'jsdom', globals: true, setupFiles: ['./tests/unit/setup.ts'], include: ['tests/unit/**/*.test.ts'], exclude: ['tests/e2e/**/*'], }, });