Angular App Debugging with VSCode Unverified Breakpoint

preview_player
Показать описание
Settings for Angular Debugging:

{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"webRoot": "${workspaceFolder}",
"sourceMaps": true,
"sourceMapPathOverrides": {
"/./*": "${webRoot}/*",
"/src/*": "${webRoot}/*",
"/*": "*",
"/./~/*": "${webRoot}/node_modules/*"
}
}

Udemy Course:

************************************************
Developer and Teaching Services Contact Details:

Get online tutors to teach you any programming language Or get your mobile or web application build.

************************************************
My Computer Setup :

*************************************************

****************************************************
Connect With Me:

Рекомендации по теме
Комментарии
Автор

You saved me! Thank you from Canada! ^_^

ZenTrickz
Автор

I fix it only change "webRoot" to "pathMyProject".

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Debug VS Code",
"webRoot": "/home/projects/myproject"
}
]
}

klauderdias