{ "version": "0.2.0", "configurations": [ { "name": "Launch & Debug on Chrome", "port": 9222, "request": "launch", "type": "chrome", "url": "http://localhost:3000", "webRoot": "${workspaceFolder}/tdrive/frontend/src" }, { "name": "Launch & Debug on Canay", "port": 9222, "request": "launch", "type": "chrome", "url": "http://localhost:3000", "webRoot": "${workspaceFolder}/tdrive/frontend/src", "runtimeExecutable": "canary" }, { "name": "Launch & Debug on Firefox", "type": "firefox", "request": "launch", "reAttach": true, "url": "http://localhost:3000", "webRoot": "${workspaceFolder}/tdrive/frontend/src", }, { "name": "Debug Node Backend", "request": "launch", "cwd": "${workspaceFolder}/tdrive/backend/node/", "runtimeArgs": [ "run", "dev:debug" ], "runtimeExecutable": "npm", "port": 9229, "outputCapture": "std", "skipFiles": [ "/**" ], "type": "node" }, { "name": "Debug Node Backend in Docker", "port": 9229, "address": "localhost", "protocol": "inspector", "request": "attach", "type": "node", "localRoot": "${workspaceFolder}/tdrive/backend/node/dist", "remoteRoot": "/usr/src/app/dist", "outFiles": [ "${workspaceFolder}/tdrive/backend/node/dist/**/**.js" ], "skipFiles": [ "/**/*.js" ], "sourceMapPathOverrides": { "file:///usr/src/app/node_modules/*": "${workspaceRoot}/tdrive/backend/node/node_modules/*", "file:///usr/src/app/node_modules/": "${workspaceRoot}/tdrive/backend/node/node_modules/", "file:///usr/src/app/*": "${workspaceRoot}/tdrive/backend/node/dist/*", "file:///usr/src/app/": "${workspaceRoot}/tdrive/backend/node/dist/", "/usr/src/app/node_modules/*": "${workspaceRoot}/tdrive/backend/node/node_modules/*", "/usr/src/app/node_modules/": "${workspaceRoot}/tdrive/backend/node/node_modules/", "/usr/src/app/*": "${workspaceRoot}/tdrive/backend/node/dist/*", "/usr/src/app/": "${workspaceRoot}/tdrive/backend/node/dist/" }, "sourceMaps": true } ], "compounds": [] }