mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
91 lines
2.2 KiB
JSON
91 lines
2.2 KiB
JSON
{
|
|
// 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": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "DHT-Node Debug Tests",
|
|
"runtimeExecutable": "yarn",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"test:debug"
|
|
],
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"cwd": "${workspaceFolder}/dht-node"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "DHT-Node Debug",
|
|
"stopOnEntry": true,
|
|
"runtimeExecutable": "yarn",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"dev"
|
|
],
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "openOnSessionStart",
|
|
"cwd": "${workspaceFolder}/dht-node"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Federation Debug Tests",
|
|
"runtimeExecutable": "yarn",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"test:debug"
|
|
],
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"cwd": "${workspaceFolder}/federation"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Federation Debug",
|
|
"stopOnEntry": true,
|
|
"runtimeExecutable": "yarn",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"dev"
|
|
],
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "openOnSessionStart",
|
|
"cwd": "${workspaceFolder}/federation"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Backend Debug",
|
|
"stopOnEntry": true,
|
|
"runtimeExecutable": "yarn",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"dev"
|
|
],
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "openOnSessionStart",
|
|
"cwd": "${workspaceFolder}/backend"
|
|
}
|
|
]
|
|
} |