mermaid-server/.vscode/launch.json

22 lines
807 B
JSON

{
// Use IntelliSense to learn about possible 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": "Launch Mermaid Server",
"type": "go",
"request": "launch",
"mode": "debug",
"cwd": "${workspaceFolder}",
"program": "${workspaceFolder}/cmd/app/main.go",
"args": [
"--mermaid=${workspaceFolder}/mermaidcli/node_modules/.bin/mmdc",
"--in=${workspaceFolder}/in",
"--out=${workspaceFolder}/out",
"--puppeteer=${workspaceFolder}/mermaidcli/puppeteer-config.json"
]
}
]
}