I have a challenge with my ASP.NET Core 2.0 application where I am attempting to incorporate TypeScript and jQuery. While TypeScript integration has been successful, I am facing issues with jQuery as it does not provide me with intellisense. Despite trying various methods, including adding the definition file from DefinitelyTyped nuget package or using NPM packages "jquery" and "jquery-ts", none of them seem to work effectively.
Interestingly, even manually adding the definition file from another project has proven to be tedious, especially when updates are required. So, I am left wondering what is the correct approach to ensure that TS definition files for libraries function properly in my project. It might be relevant to note that Gulp is being utilized in this project.