From e60fce3c425e24e1f1bce83bd098786c7d7c8898 Mon Sep 17 00:00:00 2001 From: Tobbe Lundberg Date: Fri, 12 Jan 2024 10:46:47 +0100 Subject: [PATCH 1/2] Update cli tsconfig to reference used packages --- packages/cli/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/cli/tsconfig.json b/packages/cli/tsconfig.json index a12c30f06606..f97392107cc5 100644 --- a/packages/cli/tsconfig.json +++ b/packages/cli/tsconfig.json @@ -7,5 +7,6 @@ "noEmit": true }, "include": ["src", "./testUtils.d.ts"], - "exclude": ["**/__testfixtures__"] + "exclude": ["**/__testfixtures__"], + "references": [{ "path": "../cli-helpers" }, { "path": "../project-config" }] } From dd169f54864450fbda98fd64a89fe9c2cb3c3b37 Mon Sep 17 00:00:00 2001 From: Tobbe Lundberg Date: Fri, 12 Jan 2024 10:49:04 +0100 Subject: [PATCH 2/2] Include all used packages --- packages/cli/tsconfig.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/cli/tsconfig.json b/packages/cli/tsconfig.json index f97392107cc5..7b2d2f747a61 100644 --- a/packages/cli/tsconfig.json +++ b/packages/cli/tsconfig.json @@ -8,5 +8,14 @@ }, "include": ["src", "./testUtils.d.ts"], "exclude": ["**/__testfixtures__"], - "references": [{ "path": "../cli-helpers" }, { "path": "../project-config" }] + "references": [ + { "path": "../api-server" }, + { "path": "../cli-helpers" }, + { "path": "../fastify" }, + { "path": "../internal" }, + { "path": "../prerender" }, + { "path": "../project-config" }, + { "path": "../structure" }, + { "path": "../telemetry" } + ] }