1
0
mirror of https://github.com/theoludwig/kysely-typegen.git synced 2026-05-22 16:23:25 +02:00

feat: add MySQL support

Adds `KyselyTypegenMySQLDialect`, exported from `kysely-typegen/mysql`.
This commit is contained in:
2026-05-22 15:50:53 +02:00
parent e9adb364e0
commit e11a4d2722
7 changed files with 560 additions and 4 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import { defineConfig } from "tsdown"
export default defineConfig({
entry: ["./src/index.ts", "./src/postgres.ts"],
entry: ["./src/index.ts", "./src/mysql.ts", "./src/postgres.ts"],
dts: true,
exports: true,
})