mirror of
https://github.com/hcengineering/platform.git
synced 2025-01-29 14:56:05 +00:00
23 lines
657 B
JSON
23 lines
657 B
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": [
|
||
|
{
|
||
|
"name": "Debug server",
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"args": ["src/__start.ts"],
|
||
|
"env": {
|
||
|
"ELASTIC_URL": "http://localhost:9200",
|
||
|
"MONGO_URL": "mongodb://localhost:27017"
|
||
|
},
|
||
|
"runtimeArgs": ["--nolazy", "-r", "ts-node/register"],
|
||
|
"sourceMaps": true,
|
||
|
"cwd": "${workspaceRoot}/server/server",
|
||
|
"protocol": "inspector"
|
||
|
}
|
||
|
]
|
||
|
}
|