From 0ec8257563ec10211361257dd9adca0a0ffb735d Mon Sep 17 00:00:00 2001 From: dotta Date: Thu, 2 Apr 2026 10:09:14 -0500 Subject: [PATCH] fix: include shared telemetry sources in cli typecheck Co-Authored-By: Paperclip --- cli/tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/tsconfig.json b/cli/tsconfig.json index dc664efe..3af05f51 100644 --- a/cli/tsconfig.json +++ b/cli/tsconfig.json @@ -2,7 +2,7 @@ "extends": "../tsconfig.base.json", "compilerOptions": { "outDir": "dist", - "rootDir": "src" + "rootDir": ".." }, - "include": ["src"] + "include": ["src", "../packages/shared/src"] }