快检标准新增
This commit is contained in:
82
workspaces/qhmes-print.code-workspace
Normal file
82
workspaces/qhmes-print.code-workspace
Normal file
@@ -0,0 +1,82 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user