Debug angular 2 typescript application in IE

本小妞迷上赌 提交于 2021-01-27 02:04:30

问题


I can easily debug my Angular 2 (from an Angular-CLI generated project) Typescript files in Chrome and Firefox but I am unable to debug any of my typescript file in IE 11. All files I can see in the list are of type .js Can anyone guide me on what I am doing wrong or how to debug the application in IE?


回答1:


in IE 11 you need to open your .ts file in debugger it found under "Dynamic Scripts".

Dynamic Scripts

scroll down to and locate your .ts file and open it in debug.

Select you file




回答2:


IE 11 wont handle the maps files for you automatically like Chrome does. So you have to choose the map file manually by right clicking on the js file tab:

then you should be able to debug your .ts file

However after the app gets reloaded you have to choose the source map file again, that is just wired experience and I would not recommend to debug you app in IE 11 at all unless you are experiencing some specific IE 11 bug.




回答3:


Apparently, the only way to debug .ts files with IE 11 is to create your own mappings between your .ts files and your transpiled/minified .js files, by creating .map files.

The feature is available only for Windows 8.1 and higher.

More information in the official doc, at the "Source maps" section.




回答4:


Set value "sourceMap" to true in angular.json file of your application.



来源:https://stackoverflow.com/questions/46391407/debug-angular-2-typescript-application-in-ie

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!