mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-23 22:12:24 +03:00
e576fe0d67
* Simplify commands * Simplify commands * Migrate all dev commands to project.json * Fix tests
21 lines
541 B
JSON
21 lines
541 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",
|
|
],
|
|
"outputCapture": "std",
|
|
"internalConsoleOptions": "openOnSessionStart",
|
|
"console": "internalConsole",
|
|
"cwd": "${workspaceFolder}/packages/twenty-server/"
|
|
}
|
|
]
|
|
} |