Skip to content

Commit 709df40

Browse files
committed
Update fix to match latest main branch
1 parent 145dedb commit 709df40

File tree

4 files changed

+26
-105
lines changed

4 files changed

+26
-105
lines changed

1265.patch.txt

Lines changed: 0 additions & 77 deletions
This file was deleted.

helloworld-sample/.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"outFiles": [
1616
"${workspaceFolder}/out/**/*.js"
1717
],
18-
"preLaunchTask": "npm: compile"
18+
"preLaunchTask": "npm: watch"
1919
}
2020
]
21-
}
21+
}
Lines changed: 23 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
// See https://go.microsoft.com/fwlink/?LinkId=733558
22
// for the documentation about the tasks.json format
33
{
4-
"version": "2.0.0",
5-
"tasks": [
6-
{
7-
"type": "npm",
8-
"script": "compile",
9-
"problemMatcher": "$tsc"
10-
},
11-
{
12-
"type": "npm",
13-
"script": "watch",
14-
"problemMatcher": "$tsc-watch",
15-
"isBackground": true,
16-
"presentation": {
17-
"reveal": "never"
18-
},
19-
"group": {
20-
"kind": "build",
21-
"isDefault": true
22-
}
23-
}
24-
]
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"type": "npm",
8+
"script": "watch",
9+
"isBackground": true,
10+
"problemMatcher": {
11+
"base": "$tsc-watch",
12+
"background": {
13+
"activeOnStart": true,
14+
"beginsPattern": "^\\s*\\[.*\\]\\s*Starting compilation in watch mode.*$",
15+
"endsPattern": "^\\s*\\[.*\\]\\s*Found 0 errors\\. Watching for file changes\\.$"
16+
}
17+
},
18+
"presentation": {
19+
"reveal": "never"
20+
},
21+
"group": {
22+
"kind": "build",
23+
"isDefault": true
24+
}
25+
}
26+
]
2527
}

helloworld-sample/package-lock.json

Lines changed: 1 addition & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)