ShoppingApp/Weifer.ShoppingApp.Frontend/.vscode/launch.json

21 lines
470 B
JSON
Raw Normal View History

2024-02-25 13:43:19 +01:00
{
2024-02-25 17:04:23 +01:00
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
2024-02-25 13:43:19 +01:00
"version": "0.2.0",
"configurations": [
{
2024-02-25 17:04:23 +01:00
"name": "ng serve",
"type": "chrome",
2024-02-25 13:43:19 +01:00
"request": "launch",
2024-02-25 17:04:23 +01:00
"preLaunchTask": "npm: start",
"url": "http://localhost:4200/"
2024-02-25 13:43:19 +01:00
},
{
2024-02-25 17:04:23 +01:00
"name": "ng test",
2024-02-25 13:43:19 +01:00
"type": "chrome",
"request": "launch",
2024-02-25 17:04:23 +01:00
"preLaunchTask": "npm: test",
"url": "http://localhost:9876/debug.html"
2024-02-25 13:43:19 +01:00
}
]
}