From 591a2d6ab30fa7e6a35453c845bdbfaab1176822 Mon Sep 17 00:00:00 2001 From: Connor Peet Date: Mon, 18 Oct 2021 14:59:44 -0700 Subject: [PATCH] chore: update angular cli instructions Fixes #225 --- Angular-CLI/README.md | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/Angular-CLI/README.md b/Angular-CLI/README.md index 874fe7c..4e272e9 100644 --- a/Angular-CLI/README.md +++ b/Angular-CLI/README.md @@ -47,15 +47,8 @@ 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", @@ -63,13 +56,8 @@ Then click on the gear icon to configure a launch.json file, selecting **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/*" } }, {