agmission/Development/gps-server/.vscode/launch.json

70 lines
2.2 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 App File",
"runtimeVersion": "14.17.2",
"skipFiles": [
"<node_internals>/**"
],
"envFile": "${workspaceRoot}/environment.env",
"env": {
"DEBUG": "gps-*",
},
"program": "${file}",
"console": "integratedTerminal"
},
{
"type": "node",
"request": "launch",
"name": "DEBUG GPS SERVER",
"runtimeVersion": "14.17.2",
"skipFiles": [
"<node_internals>/**"
],
"envFile": "${workspaceRoot}/environment.env",
"env": {
"DEBUG": "gps-*",
"PROTOCOL": "AGNAV",
"LOG_DEBUG": "1",
"LOG_RAW": "1",
"LOG_IDS": "0000000001,0000000003"
},
"program": "${workspaceFolder}/gps-server.js",
"console": "integratedTerminal"
},
{
"type": "node",
"request": "launch",
"name": "DEBUG RAP GPS SERVER",
"runtimeVersion": "14.17.2",
"skipFiles": [
"<node_internals>/**"
],
"envFile": "${workspaceRoot}/environment.env",
"env": {
"DEBUG": "gps-*",
"PROTOCOL": "RAP",
"LOG_DEBUG": "1",
"LOG_RAW": "1",
"LOG_IDS": "358643070306936,359225051331338"
},
"program": "${workspaceFolder}/gps-server.js",
"console": "integratedTerminal"
}
]
}