feat: Introduce new modules for class, inventory, leveling, and quests with expanded schema, refactor user service, and add verification scripts.

This commit is contained in:
syntaxbullet
2025-12-07 23:03:33 +01:00
parent be471f348d
commit 29c0a4752d
21 changed files with 1228 additions and 163 deletions

View File

@@ -1,6 +1,11 @@
import { defineConfig } from "drizzle-kit";
import { env } from "./src/lib/env";
// @ts-expect-error - Polyfill for BigInt serialization
BigInt.prototype.toJSON = function () {
return this.toString();
};
export default defineConfig({
schema: "./src/db/schema.ts",
out: "./drizzle",