stock-bot/tsconfig.json
2025-06-07 14:46:39 -04:00

65 lines
No EOL
1.6 KiB
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
// JavaScript output target version
"target": "ES2022",
// Module configuration for different project types
"module": "ESNext",
"moduleResolution": "bundler",
"composite": true,
// Type checking
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitThis": true,
"alwaysStrict": true,
"declarationMap": true,
// Module interoperability
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
// Additional features
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"sourceMap": false,
"declaration": true,
"disableReferencedProjectLoad": true,
"disableSourceOfProjectReferenceRedirect": false,
// Paths and output
"baseUrl": ".",
"paths": {
"@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" },
// Engine libraries
{ "path": "./libs/data-frame" },
{ "path": "./libs/vector-engine" },
{ "path": "./libs/strategy-engine" }
]
}