You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: tsc-strict does not return a failure exit code with SIGABRT (#76)
According to execa docs the error might contain an undefined exitCode when it gets killed by a signal or fails when spawning.
https://github.com/sindresorhus/execa/blob/main/docs/errors.md#exit-code
To test I did the following locally to simulate the TSC getting out of memory:
```
NODE_OPTIONS="--max-old-space-size=512" ../node_modules/.bin/tsc-strict
```
0 commit comments