Skip to content

Commit

Permalink
chore: update angular cli instructions
Browse files Browse the repository at this point in the history
Fixes #225
  • Loading branch information
connor4312 committed Oct 18, 2021
1 parent 5da7487 commit 591a2d6
Showing 1 changed file with 3 additions and 15 deletions.
18 changes: 3 additions & 15 deletions Angular-CLI/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,29 +47,17 @@ Then click on the gear icon to configure a launch.json file, selecting **Chrome*
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: start",
"url": "http://localhost:4200/#",
"webRoot": "${workspaceFolder}",
"sourceMapPathOverrides": {
"webpack:/*": "${webRoot}/*",
"/./*": "${webRoot}/*",
"/src/*": "${webRoot}/*",
"/*": "*",
"/./~/*": "${webRoot}/node_modules/*"
}
"url": "http://localhost:4200",
"webRoot": "${workspaceFolder}"
},
{
"name": "ng test",
"type": "chrome",
"request": "launch",
"url": "http://localhost:9876/debug.html",
"webRoot": "${workspaceFolder}",
"sourceMaps": true,
"sourceMapPathOverrides": {
"webpack:/*": "${webRoot}/*",
"/./*": "${webRoot}/*",
"/src/*": "${webRoot}/*",
"/*": "*",
"/./~/*": "${webRoot}/node_modules/*"
"./src/*": "${workspaceFolder}/src/*"
}
},
{
Expand Down

0 comments on commit 591a2d6

Please sign in to comment.