We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 609e98b commit a3d5b61Copy full SHA for a3d5b61
client-src/overlay.js
@@ -130,9 +130,9 @@ function show(messages, type) {
130
messages.forEach((message) => {
131
const entryElement = document.createElement("div");
132
const typeElement = document.createElement("span");
133
-
+ // ts-loader will output `error.file` for error file path, not in message
134
typeElement.innerText =
135
- (type === "warnings" ? "Warning:" : "Error:") + message.file || "";
+ (type === "warnings" ? "Warning:" : "Error:") + (message.file || "");
136
typeElement.style.color = `#${colors.red}`;
137
138
// Make it look similar to our terminal.
0 commit comments