Add VSCode Launch option

This commit is contained in:
smartfridge 2021-05-05 13:27:01 +02:00
parent a75c905a4c
commit 4a1c39559a
1 changed files with 22 additions and 0 deletions

22
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,22 @@
{
// 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": "Debug ArmCord via NPM",
"runtimeExecutable": "npm",
"runtimeArgs": [
"start",
"debug",
],
"port": 9229,
"skipFiles": [
"<node_internals>/**"
]
},
]
}