20 lines
652 B
JSON
20 lines
652 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts", "**/test/**", "**/tests/**", "**/__tests__/**"],
|
|
"references": [
|
|
{ "path": "../../libs/types" },
|
|
{ "path": "../../libs/config" },
|
|
{ "path": "../../libs/logger" },
|
|
{ "path": "../../libs/http" },
|
|
{ "path": "../../libs/cache" },
|
|
{ "path": "../../libs/questdb-client" },
|
|
{ "path": "../../libs/mongodb-client" },
|
|
{ "path": "../../libs/event-bus" },
|
|
{ "path": "../../libs/shutdown" }
|
|
]
|
|
}
|