Sentry JavaScript Client Ignore Global Errors

I have a IIFE wrapping my code and inside that code I have various methods with try catch blocks. The problem and confusion I am finding is that all other errors on the page are getting sent to sentry.

How can I configure the sentry JavaScript raven client to stop catching / reporting exceptions out side of my try catch blocks?

if you remove install() it will disable all of our automatic error handling. This often isn’t what you want, but if you’re explicitly doing try/catch everywhere its possible its fine.