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 3cc9736 commit 359e80bCopy full SHA for 359e80b
src/auth/AuthService.ts
@@ -28,7 +28,7 @@ export class AuthService {
28
}
29
30
this.log.info('No Token provided by the client');
31
- return;
+ return undefined;
32
33
34
public getTokenInfo(token: string): Promise<TokenInfoInterface> {
tsconfig.json
@@ -8,7 +8,7 @@
8
"importHelpers": true,
9
"strict": true,
10
"noImplicitAny": false,
11
- "strictNullChecks": true,
+ "strictNullChecks": false,
12
"noImplicitThis": true,
13
"alwaysStrict": true,
14
"noUnusedLocals": true,
0 commit comments