Error handling in Type/JavaScript is a topic that doesn’t get the importance it deserves. It’s crucial to the longevity of any project to catch and log errors. As I’ve started working with TypeScript more over the years, I started to realize that I didn’t really understand error handling. I would often run into this problem: error is type unknown, so we can’t perform any actions with error until w

