stock-bot/apps/data-service/tsconfig.json

29 lines
650 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" },
{ "path": "../../libs/types" },
{ "path": "../../libs/cache" },
{ "path": "../../libs/utils" },
{ "path": "../../libs/shutdown" },
]
}