From 9b71b9fbad417ee146426147f58123ad91eafd22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Thu, 7 Oct 2021 18:49:21 +0200 Subject: [PATCH] feat: added .vscode/launch.json --- .vscode/launch.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..caf4a9d --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,16 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "node", + "request": "launch", + "name": "Launch via NPM", + "console": "integratedTerminal", + "runtimeExecutable": "npm", + "runtimeArgs": [ + "run", + "start" + ], + } + ] +}