We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
noImplicitOverride
1 parent 548dd94 commit 4970555Copy full SHA for 4970555
src/error/GraphQLError.ts
@@ -173,7 +173,7 @@ export class GraphQLError extends Error {
173
return 'GraphQLError';
174
}
175
176
- toString(): string {
+ override toString(): string {
177
let output = this.message;
178
179
if (this.nodes) {
tsconfig.json
@@ -24,7 +24,7 @@
24
"allowUnusedLabels": false,
25
"exactOptionalPropertyTypes": false, // FIXME
26
"noFallthroughCasesInSwitch": false, // TODO consider
27
- "noImplicitOverride": false, // FIXME
+ "noImplicitOverride": true,
28
"noImplicitReturns": false, // TODO consider
29
"noPropertyAccessFromIndexSignature": false, // TODO consider
30
"noUncheckedIndexedAccess": false, // FIXME
0 commit comments