{ // 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": [ { "console": "integratedTerminal", "internalConsoleOptions": "neverOpen", "name": "nodemon", "program": "${workspaceFolder}/app.js", "request": "launch", "restart": true, "runtimeExecutable": "nodemon", "skipFiles": [ "/**" ], "type": "pwa-node" }, { "address": "TCP/IP address of process to be debugged", "localRoot": "${workspaceFolder}", "name": "Attach to Remote", "port": 9229, "remoteRoot": "Absolute path to the remote directory containing the program", "request": "attach", "skipFiles": [ "/**" ], "type": "pwa-node" }, { "name": "Docker: Attach to Node.js", "type": "node", "request": "attach", "remoteRoot": "/work/src/", "port": 9229, "address": "localhost", "localRoot": "${workspaceFolder}/nodejs/src", "protocol": "inspector", "restart": true, }, ] }