refactor: use stdio correctly in wrapper

This commit is contained in:
Joe Previte 2021-03-29 14:05:59 -07:00
parent 18ace7b906
commit e4db80667e
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@ export class ParentProcess extends Process {
CODE_SERVER_PARENT_PID: process.pid.toString(), CODE_SERVER_PARENT_PID: process.pid.toString(),
NODE_OPTIONS: `--max-old-space-size=2048 ${process.env.NODE_OPTIONS || ""}`, NODE_OPTIONS: `--max-old-space-size=2048 ${process.env.NODE_OPTIONS || ""}`,
}, },
stdio: ["ipc"], stdio: ["inherit", "pipe", "pipe", "ipc"],
}) })
} }