updated tsconfigs

This commit is contained in:
Bojan Kucera 2025-06-07 14:51:48 -04:00
parent 8be4bfe6f2
commit b3b4dee8bc
14 changed files with 144 additions and 33 deletions

View file

@ -3,7 +3,9 @@
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"declaration": true
"declaration": true,
"declarationMap": true,
"sourceMap": false
},
"include": [
"src/**/*"
@ -15,7 +17,13 @@
"**/*.spec.ts"
],
"references": [
{ "path": "../types" },
{ "path": "../config" },
{ "path": "../logger" },
{ "path": "../types" }
{ "path": "../utils" },
{ "path": "../postgres-client" },
{ "path": "../mongodb-client" },
{ "path": "../questdb-client" },
{ "path": "../cache" }
]
}