trying to fix build

This commit is contained in:
Bojan Kucera 2025-06-09 20:00:08 -04:00
parent cc19f88ad2
commit 47109baff7
41 changed files with 315 additions and 415 deletions

View file

@ -12,12 +12,11 @@
"type-check": "tsc --noEmit",
"clean": "rimraf dist"
},
"dependencies": {
"@stock-bot/config": "*",
"dependencies": { "@stock-bot/config": "*",
"@stock-bot/logger": "*",
"@stock-bot/types": "*",
"pg": "^8.11.3",
"zod": "^3.22.4"
"yup": "^1.6.1"
},
"devDependencies": {
"@types/node": "^20.11.0",

View file

@ -2,23 +2,12 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"declaration": true,
"declarationMap": true,
"sourceMap": false
"rootDir": "./src"
},
"include": [
"src/**/*"
],
"exclude": [
"dist",
"node_modules",
"**/*.test.ts",
"**/*.spec.ts"
], "references": [
"include": ["src/**/*"],
"references": [
{ "path": "../types" },
{ "path": "../config" },
{ "path": "../logger" },
{ "path": "../utils" }
{ "path": "../logger" }
]
}