launch.json 415 B

123456789101112131415161718
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "type": "node",
  6. "request": "launch",
  7. "name": "start-server",
  8. "skipFiles": [
  9. "<node_internals>/**"
  10. ],
  11. "env": {
  12. "TRILIUM_ENV": "dev"
  13. },
  14. "outputCapture": "std",
  15. "program": "${workspaceFolder}/src/www"
  16. }
  17. ]
  18. }