From f7f2872692c77d54ec73aff1c834930d48bfa346 Mon Sep 17 00:00:00 2001 From: Kara Brightwell Date: Mon, 4 Nov 2024 12:21:42 +0000 Subject: [PATCH] build: cli depends on base --- core/cli/tsconfig.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/cli/tsconfig.json b/core/cli/tsconfig.json index 63a6a88c2..9045b8311 100644 --- a/core/cli/tsconfig.json +++ b/core/cli/tsconfig.json @@ -24,11 +24,16 @@ }, { "path": "../../lib/state" + }, + { + "path": "../../lib/base" } ], "compilerOptions": { "outDir": "lib", "rootDir": "src" }, - "include": ["src/**/*"] + "include": [ + "src/**/*" + ] }