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 {
|
class BlueslipError extends Error {
|
||||||
name = "BlueslipError";
|
override name = "BlueslipError";
|
||||||
more_info?: unknown;
|
more_info?: unknown;
|
||||||
constructor(msg: string, more_info?: unknown) {
|
constructor(msg: string, more_info?: unknown) {
|
||||||
super(msg);
|
super(msg);
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"isolatedModules": true,
|
"isolatedModules": true,
|
||||||
|
"noImplicitOverride": true,
|
||||||
|
|
||||||
/* Additional checks */
|
/* Additional checks */
|
||||||
"noUnusedLocals": true,
|
"noUnusedLocals": true,
|
||||||
|
|
Loading…
Reference in New Issue