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`.
This commit is contained in:
Stefano Pigozzi 2022-11-18 16:36:00 +00:00 committed by GitHub
parent 30fffeaf4c
commit 48790db447
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

17
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,17 @@
{
"configurations": [
{
"type": "node",
"name": "start",
"request": "launch",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run-script",
"start"
],
"skipFiles": [
"<node_internals>/**"
]
}
]
}