From 38e0918896783b8eafcc275b76516af5ecd4ba14 Mon Sep 17 00:00:00 2001 From: Ethan Knapp Date: Tue, 20 Feb 2024 22:14:24 -0700 Subject: [PATCH] fix tsconfig generation --- src/common/generate_tsconfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/generate_tsconfig.ts b/src/common/generate_tsconfig.ts index 1a964eb..31aea1f 100644 --- a/src/common/generate_tsconfig.ts +++ b/src/common/generate_tsconfig.ts @@ -27,7 +27,7 @@ const tsconfigMerger = merger({ }) export async function saveGeneratedTsconfig(hv: Hypervisor) { - const typedaemon_dir = TD_DEVELOPER_MODE ? path.relative(hv.operations_directory, TYPEDAEMON_PATH) : "./node_modules/typedaemon"; + const typedaemon_dir = TD_DEVELOPER_MODE ? path.relative(hv.operations_directory, TYPEDAEMON_PATH) : "./node_modules/typedaemon/dist"; const cfg = hv.currentConfig as Configuration; const paths = {}