Add prettier

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
gavrielc
2026-02-03 17:14:17 +02:00
parent 1a32bff6ec
commit 21c66df2b1
14 changed files with 1105 additions and 692 deletions

View File

@@ -1,7 +1,7 @@
export interface AdditionalMount {
hostPath: string; // Absolute path on host (supports ~ for home)
hostPath: string; // Absolute path on host (supports ~ for home)
containerPath: string; // Path inside container (under /workspace/extra/)
readonly?: boolean; // Default: true for safety
readonly?: boolean; // Default: true for safety
}
/**
@@ -29,7 +29,7 @@ export interface AllowedRoot {
export interface ContainerConfig {
additionalMounts?: AdditionalMount[];
timeout?: number; // Default: 300000 (5 minutes)
timeout?: number; // Default: 300000 (5 minutes)
env?: Record<string, string>;
}