ExecutionConfig
10/22/22Less than 1 minute
engines.ExecutionConfig
Options when starting another script/engine (working directory, argv-style arguments, extra module paths).
Table of contents
Properties
Properties
arguments
arguments?:any
Execution arguments (similar to Node’s process.execArgv). Values should be JSON-serializable when they cross process boundaries.
path
path?:string[]
Extra entries for the module search path (see Node module.paths). On the v9 Node runtime this field may be ignored or merged by the host—prefer project layout / NODE_PATH when possible.
workingDirectory
workingDirectory?:string
CWD for the child script. Defaults to the script’s directory or project root; relative paths in the child resolve against this folder.
