style: fix rebased format drift

This commit is contained in:
Peter Steinberger
2026-03-22 23:26:21 +00:00
parent 60273758f8
commit bca7787f92
3 changed files with 15 additions and 26 deletions

View File

@@ -6,8 +6,8 @@ export function createScopedVitestConfig(
options?: { exclude?: string[]; pool?: "threads" | "forks" },
) {
const base = baseConfig as unknown as Record<string, unknown>;
const baseTest = (baseConfig as { test?: { exclude?: string[]; pool?: "threads" | "forks" } })
.test ?? {};
const baseTest =
(baseConfig as { test?: { exclude?: string[]; pool?: "threads" | "forks" } }).test ?? {};
const exclude = [...(baseTest.exclude ?? []), ...(options?.exclude ?? [])];
return defineConfig({