updated tsconfig to exclude tests files for apps

This commit is contained in:
Bojan Kucera 2025-06-09 20:57:51 -04:00
parent 2de71c6310
commit cffcd05066
9 changed files with 87 additions and 5 deletions

View file

@ -56,10 +56,16 @@
{ "path": "./libs/http" },
{ "path": "./libs/event-bus" },
{ "path": "./libs/shutdown" },
// Engine libraries
// Engine libraries
{ "path": "./libs/data-frame" },
{ "path": "./libs/vector-engine" },
{ "path": "./libs/strategy-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" }
]
}