Skip to content

Commit 031e977

Browse files
committed
Fixes http server launch config
1 parent 784bbda commit 031e977

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.vscode/tasks.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,9 +260,18 @@
260260
// Used for monaco editor playground launch config
261261
"label": "Launch Http Server",
262262
"type": "shell",
263-
"command": "node_modules/.bin/http-server --cors --port 5001 -a 127.0.0.1 -s -c-1",
263+
"command": "node_modules/.bin/http-server --cors --port 5001 -a 127.0.0.1 -c-1 -s",
264264
"isBackground": true,
265-
"problemMatcher": [],
265+
"problemMatcher": {
266+
"pattern": {
267+
"regexp": ""
268+
},
269+
"background": {
270+
"activeOnStart": true,
271+
"beginsPattern": "never match",
272+
"endsPattern": ".*"
273+
}
274+
},
266275
"dependsOn": [
267276
"Core - Build"
268277
]

0 commit comments

Comments
 (0)