Skip to content

Commit

Permalink
fix: bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
ijsKoud committed Jun 20, 2023
1 parent 4a639d2 commit 7e8d2df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/github-bot/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "../../tsconfig.json",
"include": ["./src/**/*.ts"],
"compilerOptions": { "outDir": "./dist" }
"compilerOptions": { "outDir": "./dist", "skipLibCheck": true }
}
4 changes: 1 addition & 3 deletions packages/octokit/src/Octokit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ import { throttling } from "@octokit/plugin-throttling";
import Bottleneck from "bottleneck";
import type { createClient } from "redis";

const ExtendableOctokit = CoreOctokit.plugin(throttling);

export class Octokit extends ExtendableOctokit {
export class Octokit extends CoreOctokit.plugin(throttling) {
/** The id of the GitHub application */
public readonly appId: number;

Expand Down

0 comments on commit 7e8d2df

Please sign in to comment.