stock-bot/libs/config/tsconfig.json
2025-06-03 18:02:15 -04:00

19 lines
478 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"declaration": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": false,
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts"],
"references": [
{ "path": "../api-client" },
{ "path": "../event-bus" },
{ "path": "../http-client" },
{ "path": "../types" },
{ "path": "../utils" },
]
}