在vscode上开发基于kratos的项目,如何配置.vscode 来debug

radrupt · · 1469 次点击
已解决 // lanuch.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 file", "type": "go", "request": "launch", "mode": "debug", "skipFiles": ["${workspaceFolder}/cmd/basic_resource/wire.go"], "program": "${workspaceFolder}/cmd/basic_resource", "args": ["-conf", "${workspaceFolder}/configs/"] } ] } ```
#1