Wox/.vscode/launch.json

32 lines
898 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": "Run Go",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/wox.core",
"env": {
"CGO_ENABLED": "1"
}
},
{
"name": "Run Flutter",
"cwd": "${workspaceFolder}/wox.ui.flutter/wox",
"request": "launch",
"type": "dart",
// "flutterMode": "release"
}
],
"compounds": [
{
"name": "Run Wox",
"configurations": ["Run Go", "Run Flutter"],
"stopAll": true
}
]
}