We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
noImplicitOverride
1 parent 0652a6e commit ffe37cbCopy full SHA for ffe37cb
src/error/GraphQLError.ts
@@ -160,7 +160,7 @@ export class GraphQLError extends Error {
160
return 'GraphQLError';
161
}
162
163
- toString(): string {
+ override toString(): string {
164
let output = this.message;
165
166
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