Interface ProcessExecutionOptions

interface ProcessExecutionOptions {
    cwd?: string;
    env?: {
        [key: string]: string;
    };
}

Properties

Properties

cwd?: string

The current working directory of the executed program or shell. If omitted the tools current workspace root is used.

env?: {
    [key: string]: string;
}

The additional environment of the executed program or shell. If omitted the parent process' environment is used. If provided it is merged with the parent process' environment.

Type declaration

  • [key: string]: string