Struggling to make es6 promises work with Typescript in my ASP.NET 5 project. I added the es6-promise.d.ts
using tsd install es6-promise
. However, running into issues with Promise duplication errors. Hovering over the Promise declaration in es6-promise.d.ts
reveals an error (see blue section at the bottom of the image). It seems like there's a conflict with a typescript definition file from a Microsoft SDK that is not part of my project.
https://i.sstatic.net/v09Pc.png
Any insights on why this is happening or how to resolve it?