From c0cf36a892171199e26e6bb8d284a281215445a5 Mon Sep 17 00:00:00 2001 From: Pavel Gnedov Date: Sun, 1 May 2022 22:03:58 +0700 Subject: [PATCH] Launch task added --- .vscode/launch.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..409a9ab --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,18 @@ +{ + // 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": [ + { + "type": "node", + "request": "launch", + "name": "Launch Program", + "runtimeExecutable": "yarn", + "runtimeArgs": [ + "start:debug" + ], + "cwd": "${workspaceFolder}" + } + ] +} \ No newline at end of file