28 lines
552 B
JSON
28 lines
552 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules",
|
|
"**/*.test.ts",
|
|
"**/*.spec.ts"
|
|
],
|
|
"references": [
|
|
{ "path": "../api-client" },
|
|
{ "path": "../event-bus" },
|
|
{ "path": "../http-client" },
|
|
{ "path": "../types" },
|
|
{ "path": "../utils" },
|
|
{ "path": "../config" },
|
|
{ "path": "../logger" },
|
|
]
|
|
}
|