项目文件夹

文件
2026-07-13 13:11:28 +08:00

36 行
1.1 KiB
JSON
被供应的

{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "tauri:build:debug",
"group": "build",
"problemMatcher": [],
"label": "npm:tauri:build:debug",
"detail": "tauri build --debug"
},
{
"label": "ui:td",
"type": "shell",
// `dev` keeps running in the background
// ideally you should also configure a `problemMatcher`
// see https://code.visualstudio.com/docs/editor/tasks#_can-a-background-task-be-used-as-a-prelaunchtask-in-launchjson
"isBackground": true,
// change this to your `beforeDevCommand`:
"command": "pnpm",
"args": ["td"]
},
{
"label": "ui:idev",
"type": "shell",
// `dev` keeps running in the background
// ideally you should also configure a `problemMatcher`
// see https://code.visualstudio.com/docs/editor/tasks#_can-a-background-task-be-used-as-a-prelaunchtask-in-launchjson
"isBackground": true,
// change this to your `beforeDevCommand`:
"command": "pnpm",
"args": ["idev"]
},
]
}