MCPcopy
hub / github.com/dotnet/vscode-csharp / setup

Function setup

esbuild.js:13–24  ·  view source on GitHub ↗
(build)

Source from the content-addressed store, hash-verified

11 name: 'esbuild-problem-matcher',
12
13 setup(build) {
14 build.onStart(() => {
15 console.log('[watch] build started');
16 });
17 build.onEnd((result) => {
18 result.errors.forEach(({ text, location }) => {
19 console.error(`✘ [ERROR] ${text}`);
20 console.error(` ${location.file}:${location.line}:${location.column}:`);
21 });
22 console.log('[watch] build finished');
23 });
24 },
25};
26
27/**

Callers

nothing calls this directly

Calls 3

logMethod · 0.80
replaceMethod · 0.80
errorMethod · 0.45

Tested by

no test coverage detected