Merge pull request #295029 from microsoft/dev/mjbvz/esbuild-gunt

Adopt esbuild instead of webpack for a few more extensions
This commit is contained in:
Matt Bierner
2026-02-12 16:52:22 -08:00
committed by GitHub
36 changed files with 289 additions and 245 deletions

View File

@@ -22,7 +22,13 @@
"browser": "./dist/browser/configurationEditingMain",
"scripts": {
"compile": "gulp compile-extension:configuration-editing",
"watch": "gulp watch-extension:configuration-editing"
"watch": "gulp watch-extension:configuration-editing",
"compile-web": "npm-run-all2 -lp bundle-web typecheck-web",
"bundle-web": "node ./esbuild.browser.mts",
"typecheck-web": "tsgo --project ./tsconfig.browser.json --noEmit",
"watch-web": "npm-run-all2 -lp watch-bundle-web watch-typecheck-web",
"watch-bundle-web": "node ./esbuild.browser.mts --watch",
"watch-typecheck-web": "tsgo --project ./tsconfig.browser.json --noEmit --watch"
},
"dependencies": {
"@octokit/rest": "^21.1.1",