mirror of
https://github.com/intergalacticalvariable/reader.git
synced 2024-11-16 03:32:25 +08:00
60 lines
1.4 KiB
JSON
60 lines
1.4 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Debug Fullstack: attach",
|
|
"request": "attach",
|
|
"cwd": "${workspaceFolder}/backend/functions",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"type": "node",
|
|
"preLaunchTask": "Fullstack:debug"
|
|
},
|
|
{
|
|
"name": "Debug Fullstack: attach: with proxy",
|
|
"request": "attach",
|
|
"cwd": "${workspaceFolder}/backend/functions",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"type": "node",
|
|
"preLaunchTask": "Fullstack:debug:with-proxy"
|
|
},
|
|
{
|
|
"name": "Attach",
|
|
"port": 9229,
|
|
"request": "attach",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"type": "node"
|
|
},
|
|
{
|
|
"name": "Attach by Process ID",
|
|
"processId": "${command:PickProcess}",
|
|
"request": "attach",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"type": "node"
|
|
},
|
|
{
|
|
"name": "Debug Fullstack",
|
|
"request": "launch",
|
|
"runtimeArgs": [
|
|
"emulators:start",
|
|
"--import=../.firebase-emu",
|
|
"--export-on-exit=../.firebase-emu",
|
|
],
|
|
"cwd": "${workspaceFolder}/backend/functions",
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/firebase",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"type": "node",
|
|
"preLaunchTask": "Fullstack:prepare",
|
|
"killBehavior": "polite"
|
|
},
|
|
]
|
|
} |