28 lines
617 B
JSON
28 lines
617 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"declaration": true,
|
|
"moduleResolution": "bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules",
|
|
"**/*.test.ts",
|
|
"**/*.spec.ts"
|
|
],
|
|
"references": [
|
|
{ "path": "../../libs/config" },
|
|
{ "path": "../../libs/logger" },
|
|
{ "path": "../../libs/http-client" },
|
|
{ "path": "../../libs/types" },
|
|
{ "path": "../../libs/cache" },
|
|
{ "path": "../../libs/utils" }
|
|
]
|
|
}
|