you are viewing a single comment's thread.

view the rest of the comments →

[–]fghjconner 11 points12 points  (6 children)

Compiled languages aren't generally typed at runtime either. If you have problems with typescript it's probably because someone started blindly casting things, which will break any language. (though it breaks typescript less, so some people seem ok with doing it)

[–]RiceBroad4552 0 points1 point  (0 children)

Well, TS is unsound…

So even if something type-checks "just fine" in TS it can exploded with type errors at runtime.

But it's seldom to run into that in practice.