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
{{ message }}
This repository was archived by the owner on Sep 16, 2021. It is now read-only.
TypeScript runs out of memory trying to produce a human readable
diagnostic in certain situations (infinitely recursing through anonymous
type), see microsoft/TypeScript#37230.
That's a bug, but more generally speaking, the default TypeScript
behaviour is to run with error truncation. That's for a reason: some
errors are much more readable with truncation. TypeScript's core team
made the call that error truncation is generally a good idea, so we
should follow along unless we have strong data indication otherwise
(which we don't).
Beyond that, error truncation being the default means it is the better
tested path, so we'll probably save us some trouble in the future by
keeping it enabled.
PiperOrigin-RevId: 299096788
0 commit comments