stock-bot/libs/utils/tsconfig.json
2025-06-21 18:52:01 -04:00

22 lines
558 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"composite": true,
"skipLibCheck": true,
"types": ["node", "bun-types"]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"],
"references": [
{ "path": "../core/types" },
{ "path": "../data/cache" },
{ "path": "../core/config" },
{ "path": "../core/logger" },
{ "path": "../services/http" },
{ "path": "../core/di" },
{ "path": "../data/mongodb" },
{ "path": "../data/postgres" }
]
}