I can\'t seem to get the MSAL library to import properly into my typescript code. I\'m using the MSAL for JS library (which is supposed to have typings) in
If you install the exports-loader (npm install exports-loader --save-dev) you can avoid the script tag and add the following to your directives:
npm install exports-loader --save-dev
var Msal = require("exports-loader?Msal!../../../node_modules/msal/out/msal.js");