23 lines
672 B
JSON
23 lines
672 B
JSON
{
|
|
"extends": "../../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"declarationMap": true,
|
|
"types": ["bun-types"]
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"], "references": [
|
|
{ "path": "../../../libs/api-client" },
|
|
{ "path": "../../../libs/config" },
|
|
{ "path": "../../../libs/event-bus" },
|
|
{ "path": "../../../libs/http-client" },
|
|
{ "path": "../../../libs/logger" },
|
|
{ "path": "../../../libs/types" },
|
|
{ "path": "../../../libs/utils" },
|
|
]
|
|
}
|