chore: update angular cli instructions

Fixes #225
This commit is contained in:
Connor Peet 2021-10-18 14:59:44 -07:00
Родитель 5da7487758
Коммит 591a2d6ab3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: CF8FD2EA0DBC61BD
1 изменённых файлов: 3 добавлений и 15 удалений

Просмотреть файл

@ -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/*"
}
},
{