Skip to content

Commit 72aa07e

Browse files
authored
Add note on no implicit override (#1612)
Fixes #1611
1 parent 6bc48ce commit 72aa07e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/schemas/json/tsconfig.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,11 @@
256256
"type": "boolean",
257257
"markdownDescription": "Enable error reporting for expressions and declarations with an implied `any` type..\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitAny"
258258
},
259+
"noImplicitOverride": {
260+
"description": "Enable error reporting when overriding a method without using the 'override' keyword. Requires TypeScript version 4.3 or later.",
261+
"type": "boolean",
262+
"markdownDescription": "Enable error reporting when overriding a method without using the `override` keyword. Requires TypeScript version 4.3 or later.\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitOverride"
263+
},
259264
"noImplicitThis": {
260265
"description": "Enable error reporting when `this` is given the type `any`.",
261266
"type": "boolean",

0 commit comments

Comments
 (0)