stock-bot/apps/data-services/data-processor/tsconfig.json
2025-06-03 18:31:02 -04:00

23 lines
672 B
JSON

{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"module": "ESNext",
"moduleResolution": "bundler",
"noEmit": true,
"allowImportingTsExtensions": true,
"declarationMap": true,
"types": ["bun-types"]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"], "references": [
{ "path": "../../../libs/api-client" },
{ "path": "../../../libs/config" },
{ "path": "../../../libs/event-bus" },
{ "path": "../../../libs/http-client" },
{ "path": "../../../libs/logger" },
{ "path": "../../../libs/types" },
{ "path": "../../../libs/utils" },
]
}