Add a ts-ignore instead of as any

This commit is contained in:
Alex Gleason 2024-07-11 17:22:03 -05:00
parent cd961dad86
commit c2b13b1a63
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -19,6 +19,7 @@ export class DittoPostgres {
if (!this.db) {
this.db = new Kysely({
dialect: new PostgresJSDialect({
// @ts-ignore: mismatched library versions
postgres: this.postgres,
}),
log: KyselyLogger,