From 45cdbd85fb2adfb42e809d67adba63a505980afb Mon Sep 17 00:00:00 2001 From: Sigrid Huemer <32902192+s1gr1d@users.noreply.github.com> Date: Mon, 16 Dec 2024 16:38:07 +0100 Subject: [PATCH] fix(nuxt): Remove build config from tsconfig (#14735) Because this config was added to the `includes`, the types were moved to a subdirectory. fixes https://github.com/getsentry/sentry-javascript/issues/14732 --- packages/nuxt/tsconfig.types.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nuxt/tsconfig.types.json b/packages/nuxt/tsconfig.types.json index 65455f66bd75..cab81135cd7a 100644 --- a/packages/nuxt/tsconfig.types.json +++ b/packages/nuxt/tsconfig.types.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.json", - + "exclude": ["build.config.ts"], "compilerOptions": { "declaration": true, "declarationMap": true,