perf: split hooks, tui, and extension lanes

This commit is contained in:
Peter Steinberger
2026-04-04 05:38:36 +01:00
parent af102907c5
commit 22e6225dd0
16 changed files with 324 additions and 71 deletions

12
vitest.hooks.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
export function createHooksVitestConfig(env?: Record<string, string | undefined>) {
return createScopedVitestConfig(["src/hooks/**/*.test.ts"], {
dir: "src/hooks",
env,
name: "hooks",
passWithNoTests: true,
});
}
export default createHooksVitestConfig();