Is there a way to mute the TS2307 error from the TypeScript tsc compiler?
It makes it really hard to spot real/new errors and warnings as there are many TS2307 errors in our codebase.
Update:
This error occurs when an external module is imported without its type definition .d.ts being present.
I'm aware of tsd but for many libraries we use, no type definitions exist.