{ "version": "0.2.0", "configurations": [ { "type": "node", "request": "attach", "name": "Attach to localhost", "address": "localhost", "port": 5858, "localRoot": "${workspaceFolder}/dist", "remoteRoot": "/data" }, { "type": "node", "request": "attach", "name": "Attach to localhost (NodeRed)", "address": "localhost", "port": 5859, "localRoot": "${workspaceFolder}/OpenFlowNodeRED/dist", "remoteRoot": "/data" }, { "args": [], "cwd": "${workspaceRoot}", "envFile": "${workspaceFolder}/config/.env", "name": "OpenFlow", "outFiles": [ "${workspaceRoot}/dist/**/*" ], "outputCapture": "std", "preLaunchTask": "openflow-tsc-watch", "program": "${workspaceRoot}/OpenFlow/src/index.ts", "request": "launch", "runtimeArgs": [ "--nolazy", "--trace-warnings", "--inspect", "--preserve-symlinks" ], "showAsyncStacks": true, "trace": true, "runtimeExecutable": null, "sourceMaps": true, "stopOnEntry": false, "type": "node", "resolveSourceMapLocations": [ "${workspaceFolder}/**", "!**/node_modules/**" ] }, { "args": [], "cwd": "${workspaceRoot}", "envFile": "${workspaceFolder}/config/.env", "name": "OpenFlowNodeRED", "outFiles": [ "${workspaceRoot}/OpenFlowNodeRED/dist/**/*" ], "outputCapture": "std", "preLaunchTask": "openflownodered-tsc-watch", "program": "${workspaceRoot}/OpenFlowNodeRED/src/index.ts", "request": "launch", "showAsyncStacks": true, // "runtimeArgs": [ // "--nolazy", // "--trace-warnings" // ], "trace": true, "runtimeExecutable": null, "sourceMaps": true, "stopOnEntry": false, "type": "node", "resolveSourceMapLocations": [ "${workspaceFolder}/**", "!**/node_modules/**" ] } ] }