fixed build

This commit is contained in:
Bojan Kucera 2025-06-06 22:41:25 -04:00
parent a984733b9b
commit 5904af213f
2 changed files with 14 additions and 3 deletions

View file

@ -3,7 +3,10 @@
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"declaration": true
"declaration": true,
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
},
"include": [
"src/**/*"
@ -14,4 +17,12 @@
"**/*.test.ts",
"**/*.spec.ts"
],
"references": [
{ "path": "../../libs/config" },
{ "path": "../../libs/logger" },
{ "path": "../../libs/http-client" },
{ "path": "../../libs/types" },
{ "path": "../../libs/cache" },
{ "path": "../../libs/utils" }
]
}