feat(HAI-027): complete Step 1 — add testCommand and buildCommand to Settings type

This commit is contained in:
Dustin Byrne
2026-03-25 22:15:46 -04:00
parent a38e54106b
commit e7c4977dc4

View File

@@ -59,6 +59,10 @@ export interface Settings {
pollIntervalMs: number;
groupOverlappingFiles: boolean;
autoMerge: boolean;
/** Custom test command for the project (e.g. "pnpm test") */
testCommand?: string;
/** Custom build command for the project (e.g. "pnpm build") */
buildCommand?: string;
}
export const DEFAULT_SETTINGS: Settings = {