mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-29 22:02:02 +00:00
Address PR review feedback for consistency - use full path 'apps/server/vitest.config.ts' instead of just 'apps/server'. Note: libs/types has no tests (type definitions only), so it doesn't need a vitest.config.ts. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
289 B
TypeScript
10 lines
289 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
// Use projects instead of deprecated workspace
|
|
// Glob patterns auto-discover projects with vitest.config.ts
|
|
projects: ['libs/*/vitest.config.ts', 'apps/server/vitest.config.ts'],
|
|
},
|
|
});
|