I've integrated Msal (https://github.com/AzureAD/microsoft-authentication-library-for-js) with the latest setup in Angular using Typescript 3.1.1, and I encountered the following error:
ERROR in node_modules/msal/lib-commonjs/UserAgentApplication.d.ts(35,9):
error TS2717: Subsequent property declarations must have the same type.
Property 'callBackMappedToRenewStates' must be of type 'any', but here has type '{}'.
Upon inspecting the code in the node module, it's apparent where the issue lies. However, I'd prefer not to modify this file or create a custom typing file just for this problem. Any suggestions on how to handle this?