12345678910111213141516171819202122232425262728293031323334 |
- {
- "version": "0.1.0",
- "command": "egret",
- "isShellCommand": true,
- "suppressTaskName": true,
- "tasks": [
- {
- "taskName": "build",
- "showOutput": "always",
- "args": [
- "build",
- "-sourcemap"
- ],
- "problemMatcher": "$tsc"
- },
- {
- "taskName": "clean",
- "showOutput": "always",
- "args": [
- "build",
- "-e"
- ],
- "problemMatcher": "$tsc"
- },
- {
- "taskName": "publish",
- "showOutput": "always",
- "args": [
- "publish"
- ],
- "problemMatcher": "$tsc"
- }
- ]
- }
|