mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-30 23:23:47 +03:00
21 lines
437 B
JSON
21 lines
437 B
JSON
|
{
|
||
|
"configurations": [
|
||
|
{
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"name": "Server Debug",
|
||
|
"runtimeExecutable": "yarn",
|
||
|
"cwd": "${workspaceFolder}/server",
|
||
|
"runtimeArgs": [
|
||
|
"start:debug",
|
||
|
"--",
|
||
|
"--inspect-brk"
|
||
|
],
|
||
|
"console": "integratedTerminal",
|
||
|
"restart": true,
|
||
|
"protocol": "auto",
|
||
|
"port": 9229,
|
||
|
"autoAttachChildProcesses": true
|
||
|
}
|
||
|
]
|
||
|
}
|