2
0

💅 Renamed prisma package to db

This commit is contained in:
Baptiste Arnaud
2021-12-08 07:08:13 +01:00
parent 17665def12
commit 641ba3db8a
22 changed files with 550 additions and 44 deletions

15
packages/db/tsconfig.json Normal file
View File

@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"composite": true,
"outDir": "build",
"isolatedModules": false
},
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["node_modules", "build"]
}