52 lines
1.6 KiB
JSON
52 lines
1.6 KiB
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": "1.0.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "attach",
|
|
"name": "Attach by Process ID",
|
|
"processId": "${command:PickProcess}",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
]
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "DEBUG GPS SERVER",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"env": {
|
|
"DEBUG": "gps-*",
|
|
"PROTOCOL": "AGNAV",
|
|
"LOG_DEBUG": "1",
|
|
"LOG_RAW": "1",
|
|
"LOG_IDS": "0000000001,0000000003"
|
|
},
|
|
"program": "${file}",
|
|
"console": "integratedTerminal"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "DEBUG RAP GPS SERVER",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"env": {
|
|
"DEBUG": "gps-*",
|
|
"PROTOCOL": "RAP",
|
|
"LOG_DEBUG": "1",
|
|
"LOG_RAW": "1",
|
|
"LOG_IDS": "358643070306936,359225051331338"
|
|
},
|
|
"program": "${workspaceFolder}/gps-server.js",
|
|
"console": "integratedTerminal"
|
|
}
|
|
|
|
]
|
|
} |