This commit is contained in:
2025-10-13 12:19:22 -04:00
parent e7fff00001
commit 47a76569c1
7 changed files with 20 additions and 494 deletions

View File

@@ -1,10 +1,11 @@
{
"name": "@concord/database",
"scripts": {
"db:migrate": "prisma migrate dev --skip-generate",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:seed": "bun src/seed.ts",
"db:studio": "prisma studio",
"lint": "biome lint .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit"

View File

@@ -1,5 +1,5 @@
{
"extends": "@concord/tsconfig/base.json",
"include": ["."]
"include": ["."],
"exclude": ["generated"]
}