1 parent 39a5b2d commit 2fe68a0Copy full SHA for 2fe68a0
1 file changed
esbuild.js
@@ -41,7 +41,7 @@ const esbuildProblemMatcherPlugin = {
41
build.onEnd((result) => {
42
result.errors.forEach(({ text, location }) => {
43
console.error(`✘ [ERROR] ${text}`);
44
- if (location == null) return;
+ if (location === null) {return;}
45
console.error(
46
` ${location.file}:${location.line}:${location.column}:`
47
);
0 commit comments