From c4f7b2ac0095293d01b77c0ad15aaeaf148e1845 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Tue, 24 Sep 2024 20:49:44 -0400 Subject: fix(check): ignore noImplicitOverrides in remote modules (#25854) --- cli/tsc/diagnostics.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'cli') diff --git a/cli/tsc/diagnostics.rs b/cli/tsc/diagnostics.rs index ac65973d8..b0394ec17 100644 --- a/cli/tsc/diagnostics.rs +++ b/cli/tsc/diagnostics.rs @@ -140,7 +140,9 @@ impl Diagnostic { pub fn include_when_remote(&self) -> bool { /// TS6133: value is declared but its value is never read (noUnusedParameters and noUnusedLocals) const TS6133: u64 = 6133; - self.code != TS6133 + /// TS4114: This member must have an 'override' modifier because it overrides a member in the base class 'X'. + const TS4114: u64 = 4114; + !matches!(self.code, TS6133 | TS4114) } fn fmt_category_and_code(&self, f: &mut fmt::Formatter) -> fmt::Result { -- cgit v1.2.3