GCodeOverlay/vite.config.ts
sjat 959c1fa44e chore: scaffold Vite + TS + Vitest project
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-08 22:08:36 +02:00

5 lines
129 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: { globals: true, environment: 'node' },
});