From 7d5f71ae05b2a29a8db16feedf6bb6328964b0b6 Mon Sep 17 00:00:00 2001 From: Brian Ingles Date: Tue, 22 Oct 2024 10:43:38 -0500 Subject: [PATCH] Fixed issue with types not being built for @deephaven/jsapi-nodejs (2260) --- tsconfig.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index b20df71bd2..81f179fe39 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,7 +17,12 @@ "excludeDirectories": ["**/node_modules", "**/dist"] }, "references": [ + // `npm run types` relies on project references to build types. All packages + // must be included in the reference tree somewhere. Top-level packages need + // to be included here, and their respective `tsconfig.json` files should + // reference their dependencies. { "path": "./packages/code-studio" }, - { "path": "./packages/embed-widget" } + { "path": "./packages/embed-widget" }, + { "path": "./packages/jsapi-nodejs" } ] }