test(01-02): add vitest.config.ts

- Node-environment test runner (Blob shimmed via undici in Vitest 4+)
- Scoped include: tests/**/*.test.ts (production code never picked up)
- typecheck disabled — tsc --noEmit runs separately via npm run build
- No path aliases (tsconfig.json defines none; relative imports used)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-15 17:23:14 +02:00
parent ebf015aa0d
commit 57fa29e36b

12
vitest.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
environment: 'node',
include: ['tests/**/*.test.ts'],
reporters: 'dot',
typecheck: {
enabled: false,
},
},
});