Files
qhmes/workspaces/qhmes-print.code-workspace

83 lines
1.8 KiB
Plaintext
Raw Normal View History

2026-06-16 15:35:54 +08:00
{
"folders": [
{
"path": "../XSLPrintDot",
"name": "打印调节器 (XSLPrintDot)"
}
],
"settings": {
"go.useLanguageServer": true,
"go.toolsManagement.autoUpdate": true,
"files.exclude": {
"**/build/windows/installer/resources": true
}
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "wails dev",
"type": "node",
"request": "launch",
"runtimeExecutable": "wails",
"runtimeArgs": ["dev"],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal"
}
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "wails dev",
"type": "shell",
"command": "wails dev",
"options": {
"cwd": "${workspaceFolder}"
},
"isBackground": true,
"problemMatcher": {
"owner": "wails",
"pattern": { "regexp": "^$" },
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": "(Listening|DevServer|Frontend Dev Server)"
}
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "wails build",
"type": "shell",
"command": "wails build",
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [],
"group": "build"
},
{
"label": "frontend: npm install",
"type": "shell",
"command": "npm install",
"options": {
"cwd": "${workspaceFolder}/frontend"
},
"problemMatcher": []
}
]
},
"extensions": {
"recommendations": [
"golang.go",
"Vue.volar",
"wailsapp.wails-vscode"
]
}
}