feat: db init

This commit is contained in:
afiqzudinhadi 2025-06-28 17:21:09 +08:00
parent 0b1cbef59e
commit a6fc74e851
23 changed files with 1536 additions and 5553 deletions

14
packages/db/tsconfig.json Normal file
View file

@ -0,0 +1,14 @@
{
"extends": "@repo/typescript-config/react-library.json",
"compilerOptions": {
"lib": ["dom", "ES2015"],
"sourceMap": true,
"types": ["jest", "node"],
"baseUrl": ".",
"paths": {
"@repo/db/index.ts": ["./src/index.ts"]
}
},
"include": [".", "src"],
"exclude": ["dist", "build", "node_modules"]
}