Skip to content

Commit

Permalink
fix: avoid redundant errors on vue-tsc
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Apr 10, 2022
1 parent 79a227b commit dc529f9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/vue-tsc/src/apis.ts
Expand Up @@ -118,7 +118,9 @@ export function register(
if (relatedInformation) {
(newDiagnostic as ts.Diagnostic).relatedInformation = transformDiagnostics(relatedInformation);
}

result.push(newDiagnostic);
break;
}
}
else if (
Expand Down

0 comments on commit dc529f9

Please sign in to comment.