From 4a7f79c095b7dcd49826a69233586c041e7d7a31 Mon Sep 17 00:00:00 2001 From: Dominik Biedebach Date: Sat, 9 Apr 2022 06:52:37 +0200 Subject: [PATCH] chore: added visual studio code debugging launch options --- .vscode/launch.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..a2b41bdf4 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,11 @@ +{ + "configurations": [ + { + "name": "Launch Tiptap demos in Google Chrome", + "request": "launch", + "type": "chrome", + "url": "http://localhost:3000", + "webRoot": "${workspaceFolder}" + } + ] +}