Skip to content

Commit

Permalink
Add note on no implicit override (#1612)
Browse files Browse the repository at this point in the history
Fixes #1611
  • Loading branch information
mjbvz committed May 12, 2021
1 parent 6bc48ce commit 72aa07e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/schemas/json/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,11 @@
"type": "boolean",
"markdownDescription": "Enable error reporting for expressions and declarations with an implied `any` type..\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitAny"
},
"noImplicitOverride": {
"description": "Enable error reporting when overriding a method without using the 'override' keyword. Requires TypeScript version 4.3 or later.",
"type": "boolean",
"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"
},
"noImplicitThis": {
"description": "Enable error reporting when `this` is given the type `any`.",
"type": "boolean",
Expand Down

0 comments on commit 72aa07e

Please sign in to comment.