monaco-editor/.vscode/tasks.json

31 lines
665 B
JSON
Raw Normal View History

{
"version": "2.0.0",
"tasks": [
{
"label": "Launch Http Server",
"type": "shell",
2023-02-22 01:36:04 +08:00
"command": "node_modules/.bin/http-server --cors --port 5002 -a 127.0.0.1 -c-1",
"isBackground": true,
"problemMatcher": {
"pattern": {
2023-02-22 18:39:04 +08:00
"regexp": "does not support problems"
},
"background": {
2023-02-22 18:39:04 +08:00
"activeOnStart": true,
"beginsPattern": "Shutting down http-server (will never match)",
"endsPattern": "Starting up http-server"
}
},
"dependsOn": ["npm: watch"]
},
{
"type": "npm",
"script": "watch",
"group": "build",
"problemMatcher": ["$tsc-watch"],
"isBackground": true,
"label": "npm: watch"
}
]
}