looking better

This commit is contained in:
Boki 2025-06-18 22:46:29 -04:00
parent 3ebe1178f4
commit 5c4dac8f27
25 changed files with 232 additions and 416 deletions

View file

@ -6,7 +6,6 @@
// Module configuration for different project types
"module": "ESNext",
"moduleResolution": "bundler",
"composite": true,
// Type checking
"strict": true,
@ -16,6 +15,15 @@
"alwaysStrict": true,
"declarationMap": true,
// stuff claude put in
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
// Module interoperability
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
@ -35,35 +43,5 @@
"@stock-bot/*": ["libs/*/src"]
}
},
"exclude": ["node_modules", "dist"],
"references": [
// Core libraries first
{ "path": "./libs/types" },
{ "path": "./libs/config" },
{ "path": "./libs/logger" },
{ "path": "./libs/utils" },
// 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" },
{ "path": "./libs/browser" },
{ "path": "./libs/proxy" },
// Engine libraries
{ "path": "./libs/data-frame" },
{ "path": "./libs/vector-engine" },
{ "path": "./libs/strategy-engine" },
// Applications
{ "path": "./apps/data-service" },
{ "path": "./apps/data-sync-service" },
{ "path": "./apps/web-api" }
]
"exclude": ["node_modules", "dist"]
}