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.
1 parent 6a7d453 commit 4d7027fCopy full SHA for 4d7027f
packages/client-common/src/transporter/errors.ts
@@ -1,7 +1,7 @@
1
import type { Response, StackFrame } from '../types';
2
3
export class AlgoliaError extends Error {
4
- name: string = 'AlgoliaError';
+ override name: string = 'AlgoliaError';
5
6
constructor(message: string, name: string) {
7
super(message);
tsconfig.json
@@ -14,6 +14,7 @@
14
"moduleResolution": "node",
15
"noImplicitAny": true,
16
"noImplicitThis": true,
17
+ "noImplicitOverride": true,
18
"noLib": false,
19
"noUnusedLocals": true,
20
"outDir": "dist",
0 commit comments