Interface KillOptions

interface KillOptions {
    forceKillAfterTimeout?: number | false;
}

Properties

forceKillAfterTimeout?: number | false

Milliseconds to wait for the child process to terminate before sending SIGKILL.

Can be disabled with false.

5000