interface ProcessTaskDto {
    args?: string[];
    command: string;
    detail?: string;
    executionId?: string;
    group?: {
        isDefault: boolean;
        kind: TaskGroupKind;
    };
    label: string;
    options?: {
        cwd?: string;
        [key: string]: any;
    };
    presentation?: TaskPresentationOptionsDTO;
    problemMatcher?: any;
    runOptions?: RunOptionsDTO;
    scope: string | number;
    source?: string;
    taskType?: "shell" | "process" | "customExecution";
    type: string;
    windows?: CommandProperties;
}

Hierarchy (view full)

Properties

args?: string[]
command: string
detail?: string
executionId?: string
group?: {
    isDefault: boolean;
    kind: TaskGroupKind;
}

Type declaration

label: string
options?: {
    cwd?: string;
    [key: string]: any;
}

Type declaration

  • [key: string]: any
  • Optional cwd?: string
problemMatcher?: any
runOptions?: RunOptionsDTO
scope: string | number
source?: string
taskType?: "shell" | "process" | "customExecution"
type: string