Skip to content

Commit

Permalink
Create launch.json for debugging in Visual Studio Code
Browse files Browse the repository at this point in the history
  • Loading branch information
pepebecker committed Sep 17, 2019
1 parent 710b6f0 commit e3a93c3
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Debug on Chrome",
"url": "http://localhost:4200",
"webRoot": "${workspaceFolder}"
},
{
"type": "chrome",
"request": "launch",
"name": "Debug on Chromium macOS",
"url": "http://localhost:4200",
"webRoot": "${workspaceFolder}",
"runtimeExecutable": "/Applications/Chromium.app/Contents/MacOS/Chromium"
},
{
"type": "chrome",
"request": "launch",
"name": "Debug on Brave macOS",
"url": "http://localhost:4200",
"webRoot": "${workspaceFolder}",
"runtimeExecutable": "/Applications/Brave Browser.app/Contents/MacOS/Brave Browser"
}
]
}

0 comments on commit e3a93c3

Please sign in to comment.