Contents
PR Summary
What problems was I solving
The database-core module's Vitest configuration still carried two copy-paste leftovers from the Nx scaffold: a build: { minify: false } block and an empty test.globalSetup array. Since database-core has no build target and Vitest defaults globalSetup to an empty array, both settings were dead code.
What user-facing changes did I ship
No user-facing changes. The cleanup only affects internal test tooling configuration.
How I implemented it
Removed the unreachable build block and the explicit empty globalSetup array from architect/database-core/vite.config.ts, leaving the active test environment, include patterns, timeouts, and coverage settings unchanged.
Description for the changelog
Removed dead Vite configuration from architect/database-core/vite.config.ts: the build.minify option, which is never exercised because database-core has no build target, and the no-op test.globalSetup: [] default.