realm-object-server
Version:
30 lines • 891 B
JSON
{
// Use IntelliSense to learn about possible Node.js debug 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 index.ts",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/dist/index.js",
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"preLaunchTask": "build",
"skipFiles": [
"<node_internals>"
]
},
{
"type": "node",
"request": "attach",
"name": "Attach to Process",
"port": 9229,
"outFiles": [],
"skipFiles": [
"<node_internals>"
]
}
]
}