import { defineConfig } from 'vitest/config'; import path from 'path'; export default defineConfig({ test: { include: ['**/__tests__/**/*.spec.ts', '**/__tests__/**/*.test.ts'], }, resolve: { alias: { '@': path.resolve(__dirname, '.'), }, }, });