armcord/.vscode/launch.json

18 lines
547 B
JSON
Raw Normal View History

2021-05-05 11:27:01 +00:00
{
// 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",
2022-11-21 05:50:21 +00:00
"runtimeArgs": ["start", "debug"],
2021-05-05 11:27:01 +00:00
"port": 9229,
2022-11-21 05:50:21 +00:00
"skipFiles": ["<node_internals>/**"]
}
2021-05-05 11:27:01 +00:00
]
2022-11-21 05:50:21 +00:00
}