stock-bot/libs/cache/tsconfig.json
2025-06-07 14:51:48 -04:00

28 lines
567 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"declaration": true,
"declarationMap": true,
"sourceMap": false
},
"include": [
"src/**/*"
],
"exclude": [
"dist",
"node_modules",
"**/*.test.ts",
"**/*.spec.ts"
],
"references": [
{ "path": "../types" },
{ "path": "../config" },
{ "path": "../logger" },
{ "path": "../utils" },
{ "path": "../postgres-client" },
{ "path": "../mongodb-client" },
{ "path": "../questdb-client" }
]
}