mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 22:55:48 +01:00
48 lines
No EOL
1 KiB
JSON
48 lines
No EOL
1 KiB
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": "Test cmd package",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "test",
|
|
"program": "${workspaceFolder}/cmd/"
|
|
},
|
|
{
|
|
"name": "Wails Init",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "auto",
|
|
"program": "${workspaceFolder}/cmd/wails/main.go",
|
|
"env": {},
|
|
"cwd": "/tmp",
|
|
"args": [
|
|
"init",
|
|
"-name",
|
|
"runtime",
|
|
"-dir",
|
|
"runtime",
|
|
"-output",
|
|
"runtime",
|
|
"-template",
|
|
"vuebasic"
|
|
]
|
|
},
|
|
{
|
|
"name": "Wails Update Pre",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "auto",
|
|
"program": "${workspaceFolder}/cmd/wails/main.go",
|
|
"env": {},
|
|
"cwd": "/tmp",
|
|
"args": [
|
|
"update",
|
|
"-pre"
|
|
]
|
|
}
|
|
]
|
|
} |