Options for entry — CommandOptions plus exec / execArgs before the entry path.
Source src/internal/launcher.ts:1436 lines
export interface EntryOptions extends CommandOptions {
/** Executable. Default `"node"`. */
readonly EntryOptions.exec?: string | undefinedExecutable. Default "node".
exec?: string;
/** Args before the entry path (e.g. `["exec", "tsx"]` with `exec: "pnpm"`). */
readonly EntryOptions.execArgs?: readonly string[] | undefinedArgs before the entry path (e.g. ["exec", "tsx"] with exec: "pnpm").
execArgs?: interface ReadonlyArray<T>ReadonlyArray<string>;
}
Referenced by 1 symbols