init nest (wip)

This commit is contained in:
Anthony Mineo 2020-08-22 10:19:50 -04:00
parent 1a211e261e
commit 3b5f41f933
26 changed files with 8251 additions and 0 deletions

15
app/api/tsconfig.json Normal file
View file

@ -0,0 +1,15 @@
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true
}
}