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 e47df65 commit b187a09Copy full SHA for b187a09
clients/algoliasearch-client-javascript/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);
clients/algoliasearch-client-javascript/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