{ // 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 Package", "type": "go", "request": "launch", "mode": "auto", "program": "${workspaceFolder}/main.go", "args": [] }, { "name": "Help", "type": "go", "request": "launch", "mode": "auto", "program": "${workspaceFolder}/main.go", "args": [ "-h" ] }, { "name": "Generate", "type": "go", "request": "launch", "mode": "auto", "program": "${workspaceFolder}/main.go", "args": [ "--metafile", "example.yml", "--outdir-backend", "dist/backend", "--outdir-frontend", "dist/frontend" ] }, { "name": "zmap", "type": "go", "request": "launch", "mode": "auto", "program": "${workspaceFolder}/main.go", "args": [ "--metafile", "/home/ymnuk/projects/zmap/zmap.yml", "--outdir-backend", "../zmap/backend", "--outdir-frontend", "../zmap/frontend" ] } ] }