When you run tsc and attempt to interrupt a build it does not respond instead it just complets the build
This is because typescript-go installs signal handlers to propagate sigterm and sigint to the context.Context object
However this is not always threaded all the way through the build
I prepared #4592 to fix this, but the fix is non-trivial
Alternatively should we just not install signal handlers and let normal behavior proceed?
When you run tsc and attempt to interrupt a build it does not respond instead it just complets the build
This is because typescript-go installs signal handlers to propagate sigterm and sigint to the
context.ContextobjectHowever this is not always threaded all the way through the build
I prepared #4592 to fix this, but the fix is non-trivial
Alternatively should we just not install signal handlers and let normal behavior proceed?