mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-24 06:48:42 +03:00
9aefab2297
* fix: added working launch json for VScode * fix: removed unused env
21 lines
545 B
JSON
21 lines
545 B
JSON
{
|
|
"version": "0.2.0",
|
|
"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"],
|
|
"configurations": [
|
|
{
|
|
"name": "twenty-server - dev debug",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"runtimeExecutable": "yarn",
|
|
"runtimeArgs": [
|
|
"nx",
|
|
"run",
|
|
"twenty-server:start:dev",
|
|
],
|
|
"outputCapture": "std",
|
|
"internalConsoleOptions": "openOnSessionStart",
|
|
"console": "internalConsole",
|
|
"cwd": "${workspaceFolder}/packages/twenty-server/"
|
|
}
|
|
]
|
|
} |