1
0
Fork 0
mirror of https://codeberg.org/beerbrawl/beerbrawl.git synced 2024-09-23 09:40:52 +02:00
beerbrawl/frontend/.vscode/launch.json
2024-05-19 22:06:11 +00:00

18 lines
519 B
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": "Launch",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: start",
"url": "http://localhost:4200",
//Prevent Chrome from debugging library code
"skipFiles": ["node_modules/**/*.js", "lib/**/*.js"]
}
]
}