import { defineConfig } from 'vitest/config'; import path from 'path'; export default defineConfig({ test: { globals: true, environment: 'node', include: ['tests/**/*.test.ts'], testTimeout: 10000, }, resolve: { alias: { '@alga-psa/types': path.resolve(__dirname, '../types/src'), }, }, });