{ // 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": [ "/**" ] }, { "type": "node", "request": "attach", "name": "Attach by Process ID", "processId": "${command:PickProcess}", "skipFiles": [ "/**" ] }, { "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": [ "/**" ], } ] }