-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
module.exports = { | ||
presets: [ | ||
["@babel/preset-env", { targets: { node: "current" } }], | ||
"@babel/preset-typescript", | ||
], | ||
}; | ||
export const presets = [ | ||
["@babel/preset-env", { targets: { node: "current" } }], | ||
"@babel/preset-typescript", | ||
]; |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -131,9 +131,9 @@ export default class RealWsJsonClient implements WsJsonClient { | |
private iterator = new MulticastIterator(this.buffer); | ||
private state = ChannelState.DISCONNECTED; | ||
private authCode?: string; | ||
// @ts-ignore | ||
// @ts-expect-error | ||
Check failure on line 134 in src/client/realWsJsonClient.ts
|
||
private accessToken?: string; | ||
// @ts-ignore | ||
// @ts-expect-error | ||
Check failure on line 136 in src/client/realWsJsonClient.ts
|
||
private refreshToken?: string; | ||
|
||
constructor( | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import debug from "debug"; | ||
import { WsJsonClient } from "./wsJsonClient.js"; | ||
|
||
// @ts-ignore | ||
// @ts-expect-error | ||
Check failure on line 4 in src/client/wsJsonClientAuth.ts
|
||
const logger = debug("wsJsonClientAuth"); | ||
|
||
export default class WsJsonClientAuth { | ||
|