Files
pixel.horse/.vscode/launch.json
T
Eliot Partridge 4f68a53150 Add VS Code launch config
Allows attaching to the debugger run with a dev build from within Code
2019-08-29 22:59:38 -05:00

18 lines
421 B
JSON

{
// 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": "attach",
"name": "Attach to server",
"address": "localhost",
"port": 9229,
"outFiles": [
"${workspaceFolder}/**/*.js"
]
}
]
}