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 c38fdf5 commit ef518a9Copy full SHA for ef518a9
server/src/utils.ts
@@ -570,8 +570,9 @@ export let parseCompilerLogOutput = async (
570
});
571
} else if (line.startsWith("FAILED: cannot make progress due to previous errors.")) {
572
// skip
573
+ } else if (line.startsWith("FAILED: dependency cycle")) {
574
+ // skip as we can't extract a filepath from this error message
575
} else if (line.startsWith("FAILED:")) {
- // File with a self cycle
576
parsedDiagnostics.push({
577
code: undefined,
578
severity: t.DiagnosticSeverity.Error,
0 commit comments