mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 01:23:57 +08:00
24 lines
No EOL
710 B
JSON
24 lines
No EOL
710 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
// nodemon should be installed globally, use npm i -g nodemon
|
|
{
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"name": "nodemon start-server",
|
|
"program": "${workspaceFolder}/src/www",
|
|
"request": "launch",
|
|
"restart": true,
|
|
"runtimeExecutable": "nodemon",
|
|
"env": {
|
|
"TRILIUM_ENV": "dev",
|
|
"TRILIUM_DATA_DIR": "./data"
|
|
},
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"type": "node",
|
|
"outputCapture": "std",
|
|
},
|
|
]
|
|
} |