drizzle-kit defineConfig no "pg" driver available.

There seems to be no type for "pg" in the driver field of defineConfig in drizzle-kit.

import { defineConfig } from "drizzle-kit"

export default defineConfig({
  schema: "/src/db/schema.ts",
  out: "/src/db/migrations",
  driver: "pg", // does not exist
  // the only ones that are an option are: "aws-data-api", "d1-http", "expo", "turso"
})
Was this page helpful?