Skip to content

Commit

Permalink
Upgrade to Typescript 5 (#3607)
Browse files Browse the repository at this point in the history
* mono: update to ts 4.9.4

* monorepo: update to typescript 5.0.4

* fix type export

* commit lock file
  • Loading branch information
ScottyPoi authored Aug 21, 2024
1 parent 0d576e2 commit e508cfc
Show file tree
Hide file tree
Showing 3 changed files with 118 additions and 105 deletions.
213 changes: 114 additions & 99 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
"sort-package-json": "1.57.0",
"tape": "5.6.0",
"tsx": "^4.6.2",
"typedoc": "0.23.10",
"typedoc-plugin-markdown": "3.13.4",
"typescript": "4.7.4",
"typedoc": "^0.26.6",
"typedoc-plugin-markdown": "^4.2.5",
"typescript": "5.0.4",
"vite-plugin-node-polyfills": "^0.21.0",
"vite-plugin-top-level-await": "^1.4.1",
"vite-plugin-wasm": "^3.3.0",
Expand Down
4 changes: 1 addition & 3 deletions packages/client/src/@types/qheap/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ declare module 'qheap' {
freeSpace?: number
size?: number
}
class QHeap<T> {
export class QHeap<T> {
constructor(opts?: QHeapOptions)
insert(item: T): void
push(item: T): void
Expand All @@ -22,6 +22,4 @@ declare module 'qheap' {
length: number
gc(opts: { minLength: number; maxLength: number }): void
}

export = QHeap
}

0 comments on commit e508cfc

Please sign in to comment.