import { defineConfig } from 'vitest/config' export default defineConfig({ test: { environment: 'node', include: ['tests/integration/**/*.test.ts'], testTimeout: 30000, typecheck: { tsconfig: './tests/tsconfig.json' }, }, resolve: { alias: { '~': new URL('./app', import.meta.url).pathname, }, }, })