19 lines
478 B
JSON
19 lines
478 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"declaration": true,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": false,
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "**/*.test.ts"],
|
|
"references": [
|
|
{ "path": "../api-client" },
|
|
{ "path": "../event-bus" },
|
|
{ "path": "../http-client" },
|
|
{ "path": "../types" },
|
|
{ "path": "../utils" },
|
|
]
|
|
}
|