You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
esModuleInterop: Projects that use ES6-style imports to import CommonJS modules will no longer
compile. These projects will need to switch from using ES6-style imports (import foo from "foo";)
to CommonJS-style imports (import foo = require("foo");) when importing CommonJS modules.