Merge pull request #2695 from ueberdosis/vscode-debugging

chore: added visual studio code debugging launch options
This commit is contained in:
bdbch
2022-04-09 08:48:14 +02:00
committed by GitHub

11
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,11 @@
{
"configurations": [
{
"name": "Launch Tiptap demos in Google Chrome",
"request": "launch",
"type": "chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}"
}
]
}