mirror of https://github.com/zulip/zulip.git
tsconfig: Enable noImplicitOverride.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
cf6515c774
commit
d840d80ed4
|
@ -165,7 +165,7 @@ function report_error(
|
|||
}
|
||||
|
||||
class BlueslipError extends Error {
|
||||
name = "BlueslipError";
|
||||
override name = "BlueslipError";
|
||||
more_info?: unknown;
|
||||
constructor(msg: string, more_info?: unknown) {
|
||||
super(msg);
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
"strict": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"isolatedModules": true,
|
||||
"noImplicitOverride": true,
|
||||
|
||||
/* Additional checks */
|
||||
"noUnusedLocals": true,
|
||||
|
|
Loading…
Reference in New Issue