add typeORM initial files

This commit is contained in:
Aster Fialla
2026-03-01 10:20:43 -05:00
parent ea0169aa48
commit 78e6404b20
6 changed files with 88 additions and 2 deletions

14
tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"lib": [
"es2021"
],
"target": "es2021",
"module": "commonjs",
"moduleResolution": "node",
"outDir": "./build",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true
}
}