import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { globals: true, include: ['src/**/*.test.ts'], passWithNoTests: true, env: { ALLOW_ANONYMOUS_DEV: 'true', }, }, });