We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 129153f commit 89d62aaCopy full SHA for 89d62aa
src/bin.ts
@@ -62,7 +62,12 @@ v8flags(function (err, v8flags) {
62
// are propagated to the process tree, but `kill` is not.
63
//
64
// See: https://nodejs.org/api/child_process.html#child_process_options_detached
65
- detached: true,
+ //
66
+ // This fix is not being required on Windows; besides, detached mode
67
+ // runs differently on Windows than on other platforms, and it would break
68
+ // the behavior of this application. See https://github.com/TypeStrong/ts-node/issues/480
69
+ // for more details.
70
+ detached: process.platform !== 'win32',
71
stdio: 'inherit'
72
}
73
)
0 commit comments