From dd58226e32427d4d33581e9c0c2a07da5b26751b Mon Sep 17 00:00:00 2001 From: David Ludwig Date: Wed, 16 Jun 2021 13:23:15 -0500 Subject: [PATCH] Required override keyword --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index c5bf1d2..a216b74 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -40,6 +40,7 @@ // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ // "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */ + "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an 'override' modifier. */ // "noPropertyAccessFromIndexSignature": true, /* Require undeclared properties from index signatures to use element accesses. */ /* Module Resolution Options */