- 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>
13 lines
226 B
TypeScript
13 lines
226 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'node',
|
|
include: ['tests/**/*.test.ts'],
|
|
reporters: 'dot',
|
|
typecheck: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
});
|