Notes/.vscode/launch.json

23 lines
574 B
JSON
Raw Normal View History

{
2025-01-09 18:07:02 +02:00
"version": "0.2.0",
"configurations": [
// nodemon should be installed globally, use npm i -g nodemon
{
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
2025-02-19 18:18:28 +02:00
"name": "nodemon server:start",
"program": "${workspaceFolder}/src/main",
2025-01-09 18:07:02 +02:00
"request": "launch",
"restart": true,
"runtimeExecutable": "nodemon",
"env": {
"TRILIUM_ENV": "dev",
"TRILIUM_DATA_DIR": "./data"
},
"skipFiles": ["<node_internals>/**"],
"type": "node",
"outputCapture": "std"
}
]
}