Type alias BinOptions

BinOptions: {
    bin?: string;
    binArgs?: string[];
    cwd?: string;
}

Type declaration

  • Optional bin?: string

    The default binary to run scripts with.

    Default

    'node'
    
  • Optional binArgs?: string[]

    The default binary arguments to pass to the binary.

    Default

    []
    
  • Optional cwd?: string

    The default current working directory in which to run scripts.

    Default

    process.cwd()
    

Generated using TypeDoc