linxus fs fixes
This commit is contained in:
parent
ac23b70146
commit
0b7846fe67
292 changed files with 41947 additions and 41947 deletions
140
tsconfig.json
140
tsconfig.json
|
|
@ -1,71 +1,71 @@
|
|||
{
|
||||
"$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" },
|
||||
|
||||
// Applications
|
||||
{ "path": "./apps/data-service" },
|
||||
{ "path": "./apps/execution-service" },
|
||||
{ "path": "./apps/portfolio-service" },
|
||||
{ "path": "./apps/processing-service" },
|
||||
{ "path": "./apps/strategy-service" }
|
||||
]
|
||||
{
|
||||
"$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" },
|
||||
|
||||
// Applications
|
||||
{ "path": "./apps/data-service" },
|
||||
{ "path": "./apps/execution-service" },
|
||||
{ "path": "./apps/portfolio-service" },
|
||||
{ "path": "./apps/processing-service" },
|
||||
{ "path": "./apps/strategy-service" }
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue