39 lines
1.1 KiB
JSON
39 lines
1.1 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "FRONT: DEBUG(Edge)",
|
|
"request": "launch",
|
|
"type": "msedge",
|
|
"url": "http://localhost:4200",
|
|
"webRoot": "${workspaceFolder}",
|
|
"preLaunchTask": "Start Node server with nvs latest"
|
|
},
|
|
{
|
|
"name": "Attach Edge",
|
|
"type": "msedge",
|
|
"request": "attach",
|
|
"url": "http://localhost:4200/#",
|
|
"webRoot": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"name": "Launch Edge (Test)",
|
|
"type": "msedge",
|
|
"request": "launch",
|
|
"url": "http://localhost:9876/debug.html",
|
|
"webRoot": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"name": "Launch Edge (E2E)",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/node_modules/protractor/bin/protractor",
|
|
"protocol": "inspector",
|
|
"args": ["${workspaceFolder}/protractor.conf.js"]
|
|
}
|
|
]
|
|
}
|