e0615fa867
📁 Changed TDrive root folder
74 lines
2.3 KiB
JSON
74 lines
2.3 KiB
JSON
{
|
|
"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": [
|
|
"<node_internals>/**"
|
|
],
|
|
"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": [
|
|
"<node_internals>/**/*.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": []
|
|
} |