mirror of
https://github.com/denoland/deno.git
synced 2024-12-21 23:04:45 -05:00
chore: Add "noImplicitOverride" to config-file.v1.json (#13780)
This commit is contained in:
parent
7e3d9084b6
commit
a41d399f5f
1 changed files with 6 additions and 0 deletions
|
@ -99,6 +99,12 @@
|
|||
"default": true,
|
||||
"markdownDescription": "Enable error reporting for expressions and declarations with an implied `any` type..\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitAny"
|
||||
},
|
||||
"noImplicitOverride": {
|
||||
"description": "Ensure overriding members in derived classes are marked with an override modifier.",
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"markdownDescription": "Ensure overriding members in derived classes are marked with an override modifier.\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitOverride"
|
||||
},
|
||||
"noImplicitReturns": {
|
||||
"description": "Enable error reporting for codepaths that do not explicitly return in a function.",
|
||||
"type": "boolean",
|
||||
|
|
Loading…
Reference in a new issue