import { defineConfig } from 'vitest/config'; import path from 'path'; export default defineConfig({ test: { environment: 'node', include: ['__tests__/**/*.test.ts', 'scripts/__tests__/**/*.test.ts'], globals: true, setupFiles: ['__tests__/setup.ts'], }, resolve: { alias: { '@': path.resolve(__dirname, 'src'), }, }, });