From dea4c4414167602ea2f13888c6ecee24eb65ed93 Mon Sep 17 00:00:00 2001 From: "S. Amir Mohammad Najafi" Date: Mon, 8 Jan 2024 15:39:02 +0330 Subject: [PATCH] chore: fix all typescript reference --- packages/async-queue/tsconfig.json | 2 +- packages/dedupe/tsconfig.json | 2 +- packages/logger/tsconfig.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/async-queue/tsconfig.json b/packages/async-queue/tsconfig.json index b37f2034..65f5f05e 100644 --- a/packages/async-queue/tsconfig.json +++ b/packages/async-queue/tsconfig.json @@ -7,5 +7,5 @@ "composite": true, }, "include": ["src/**/*.ts"], - "references": [{"path": "../flatomise"}] + "references": [{"path": "../flatomise"}, {"path": "../type-helper"}] } diff --git a/packages/dedupe/tsconfig.json b/packages/dedupe/tsconfig.json index 879b4c5c..c5174e62 100644 --- a/packages/dedupe/tsconfig.json +++ b/packages/dedupe/tsconfig.json @@ -7,5 +7,5 @@ "composite": true, }, "include": ["src/**/*.ts"], - "references": [] + "references": [{"path": "../type-helper"}] } diff --git a/packages/logger/tsconfig.json b/packages/logger/tsconfig.json index d939f3ff..2bfd321a 100644 --- a/packages/logger/tsconfig.json +++ b/packages/logger/tsconfig.json @@ -7,5 +7,5 @@ "composite": true, }, "include": ["src/**/*.ts"], - "references": [{"path": "../platform-info"}] + "references": [{"path": "../platform-info"}, {"path": "../dedupe"}] }