32 lines
763 B
JSON
32 lines
763 B
JSON
{
|
|
"extends": "../../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"types": ["bun-types"],
|
|
"baseUrl": "../../../",
|
|
"paths": {
|
|
"@stock-bot/*": ["libs/*/src", "libs/*/dist"]
|
|
},
|
|
"rootDir": "../../../"
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"../../../libs/*/src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"../../../libs/*/examples/**/*",
|
|
"../../../libs/**/*.test.ts",
|
|
"../../../libs/**/*.spec.ts"
|
|
],
|
|
"references": [
|
|
{ "path": "../../../libs/config" },
|
|
{ "path": "../../../libs/types" },
|
|
{ "path": "../../../libs/logger" },
|
|
{ "path": "../../../libs/http-client" },
|
|
{ "path": "../../../libs/event-bus" }
|
|
]
|
|
}
|