While debugging a Typescript web application in Visual Studio 2015 and using the Microsoft EDGE browser, an error is reported as follows:
HTTP404: NOT FOUND - The server cannot locate anything that matches the requested URI (Uniform Resource Identifier).
(XHR): GET - http://localhost:2543/scripts/Helpers/jsontable.ts
Even though I have a jsontable.ts
file in my project, it is not actually stored under the scripts
directory. I have searched throughout my solution and found no other references to 'jsontable.ts' apart from in the _references.ts
file which has since been removed. Despite this, the problem persists.
Interestingly, this error does not occur when testing with Internet Explorer 11, Chrome, Opera, or FireFox. This leads me to believe that the request is not being sent intentionally from other sections of my application.
Has anyone else encountered this issue? Is there a known solution?