I am encountering an issue where my TypeScript compiler is running out of memory and crashing. I would like to investigate what might be causing this. The official documentation mentions the following:
--verbose boolean
Enable verbose logging
However, when I try to use
"typescript": "^4.2.4"
, it throws an error:
tsc --verbose
error TS5023: Unknown compiler option '--verbose'.
Can someone provide insight on how I can enable logging in this situation? Thank you.