mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 10:02:59 +08:00
23 lines
574 B
JSON
23 lines
574 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
// nodemon should be installed globally, use npm i -g nodemon
|
|
{
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"name": "nodemon server:start",
|
|
"program": "${workspaceFolder}/src/main",
|
|
"request": "launch",
|
|
"restart": true,
|
|
"runtimeExecutable": "nodemon",
|
|
"env": {
|
|
"TRILIUM_ENV": "dev",
|
|
"TRILIUM_DATA_DIR": "./data"
|
|
},
|
|
"skipFiles": ["<node_internals>/**"],
|
|
"type": "node",
|
|
"outputCapture": "std"
|
|
}
|
|
]
|
|
}
|