Contents
PR Summary
What problems was I solving
The database-client Vite config contained a build: { minify: false } block and an empty test.globalSetup: [] array. Because the Nx project has no build target and is consumed as TypeScript source, the build option was never used, and the empty globalSetup array was identical to Vitest’s default, so both entries were dead configuration that added noise and maintenance surface area.
What user-facing changes did I ship
None. This is a non-functional cleanup of internal tooling configuration.
How I implemented it
Removed the unused build block and the no-op globalSetup: [] key from architect/database-client/vite.config.ts. No other files, dependencies, or project targets were changed.
Description for the changelog
Removed dead build: { minify: false } and test.globalSetup: [] entries from architect/database-client/vite.config.ts. The project has no Nx build target and is consumed as TypeScript source, so the build option was never applied; the empty global setup array equaled Vitest’s default. No runtime or test behavior changed.