1
0
mirror of https://github.com/github/gitignore synced 2024-11-26 13:44:21 +01:00
gitignore/.vscode/launch.json

22 lines
737 B
JSON
Raw Normal View History

2023-05-21 11:15:50 +02:00
{
// Verwendet IntelliSense zum Ermitteln möglicher Attribute.
// Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
// Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Chrome",
"port": 9222,
"request": "attach",
2023-05-21 11:20:10 +02:00
"type": "chrome",
2023-05-21 11:15:50 +02:00
"webRoot": "${workspaceFolder}"
},
{
"type": "msedge",
"request": "launch",
"name": "Microsoft Edge mit \"Localhost\" starten",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}