import { defineConfig } from 'vitest/config'; // Vitest config for dev-indices Vite plugin (pure Node, no jsdom) export default defineConfig({ test: { environment: 'node', include: ['__tests__/**/*.{test,spec}.ts'], }, });