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

54 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": "2.0.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"runtimeVersion": "14.17.2",
"env": {
"DEBUG": "track-*",
"NODE_ENV": "development",
//"UV_THREADPOOL_SIZE": "8"
},
"program": "${file}",
"console": "integratedTerminal",
"skipFiles": [
"<node_internals>/**"
]
},
{
"type": "node",
"request": "attach",
"name": "Attach by Process ID",
"processId": "${command:PickProcess}",
"skipFiles": [
"<node_internals>/**"
]
},
{
"type": "node",
"request": "launch",
"name": "Debug Track Server",
"runtimeVersion": "14.17.2",
"runtimeArgs": [
"--trace-deprecation",
"--trace-warnings"
],
"envFile": "${workspaceRoot}/environment.env",
"env": {
"DEBUG": "express:*,track:*",
"NODE_ENV": "development",
"UV_THREADPOOL_SIZE": "8",
},
"program": "${workspaceFolder}/track-server.js",
"console": "integratedTerminal",
"skipFiles": [
"<node_internals>/**"
],
}
]
}