-
Notifications
You must be signed in to change notification settings - Fork 259
Closed
Description
Hi,
(I searched but couldn't find any information about this before!)
When I created a new project and selected "typescript" using the "esbuild" system, the project is created successfully but pressing F5 to run the task results in an issue. VSCode does not recognise the problem matcher $esbuild-watch defined here:
vscode-generator-code/generators/app/templates/ext-command-ts/vscode-esbuild/vscode/tasks.json
Line 24 in 741c08a
| "problemMatcher": "$esbuild-watch", |
I was able to work around this by turning the "problemMatcher" key in tasks.json to the following;
"problemMatcher": {
"base": "$esbuild",
"severity": "error",
"applyTo": "closedDocuments",
"source": "esbuild",
"fileLocation": "relative",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "\\[watch\\] build started"
},
"endsPattern": {
"regexp": "\\[watch\\] build finished"
}
}
},I don't know if I'm missing plugin here? I could not find mention of needing to install anything in the yo docs.
Hope this is of some help to someone.
$ npm --version
10.8.3
$ node --version
v20.12.2
$ code --version
1.93.0
4849ca9bdf9666755eb463db297b69e5385090e3
x64
$ npx yo --version
5.0.0
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels