Skip to content

Commit 359e80b

Browse files
author
hirsch88
committed
Fix typescript errors
1 parent 3cc9736 commit 359e80b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/auth/AuthService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class AuthService {
2828
}
2929

3030
this.log.info('No Token provided by the client');
31-
return;
31+
return undefined;
3232
}
3333

3434
public getTokenInfo(token: string): Promise<TokenInfoInterface> {

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"importHelpers": true,
99
"strict": true,
1010
"noImplicitAny": false,
11-
"strictNullChecks": true,
11+
"strictNullChecks": false,
1212
"noImplicitThis": true,
1313
"alwaysStrict": true,
1414
"noUnusedLocals": true,

0 commit comments

Comments
 (0)