updating build

This commit is contained in:
Bojan Kucera 2025-06-07 14:46:39 -04:00
parent a8ee4022bf
commit 8be4bfe6f2
8 changed files with 122 additions and 34 deletions

View file

@ -3,9 +3,9 @@
"compilerOptions": {
// JavaScript output target version
"target": "ES2022",
// Module configuration for different project types
// Module configuration for different project types
"module": "ESNext",
"moduleResolution": "node",
"moduleResolution": "bundler",
"composite": true,
// Type checking
@ -14,6 +14,7 @@
"strictNullChecks": true,
"noImplicitThis": true,
"alwaysStrict": true,
"declarationMap": true,
// Module interoperability
"esModuleInterop": true,
@ -33,25 +34,32 @@
"paths": {
"@stock-bot/*": ["libs/*/src"]
}
},
"exclude": [
"node_modules",
"dist"
], "references": [
{ "path": "./libs/config" },
{ "path": "./libs/http" },
{ "path": "./libs/logger" },
{ "path": "./libs/mongodb-client" },
{ "path": "./libs/postgres-client" },
{ "path": "./libs/questdb-client" },
],
"references": [
// Core libraries first
{ "path": "./libs/types" },
{ "path": "./libs/cache" },
{ "path": "./libs/config" },
{ "path": "./libs/logger" },
{ "path": "./libs/utils" },
{ "path": "./libs/event-bus" },
{ "path": "./libs/data-frame" },
{ "path": "./libs/strategy-engine" },
{ "path": "./libs/vector-engine" },
]
}
// Database clients
{ "path": "./libs/postgres-client" },
{ "path": "./libs/mongodb-client" },
{ "path": "./libs/questdb-client" },
// Service libraries
{ "path": "./libs/cache" },
{ "path": "./libs/http" },
{ "path": "./libs/event-bus" },
{ "path": "./libs/shutdown" },
// Engine libraries
{ "path": "./libs/data-frame" },
{ "path": "./libs/vector-engine" },
{ "path": "./libs/strategy-engine" }
]
}