From 48790db4476818e7ddc6d228dc8b1ad12481907f Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Fri, 18 Nov 2022 16:36:00 +0000 Subject: [PATCH] Create `.vscode/launch.json` It defines the possible debug targets available in Visual Studio Code (-based) editors, as specified here: https://code.visualstudio.com/docs/nodejs/nodejs-debugging The specified configuration allows the debugging of the webpack development server launched with `npm run start`. --- .vscode/launch.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..bb7ae2cd --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,17 @@ +{ + "configurations": [ + { + "type": "node", + "name": "start", + "request": "launch", + "runtimeExecutable": "npm", + "runtimeArgs": [ + "run-script", + "start" + ], + "skipFiles": [ + "/**" + ] + } + ] +}