From 3bcbd278a298fababf7178236358dbea99147248 Mon Sep 17 00:00:00 2001 From: Gregor Becker Date: Mon, 20 Jul 2026 19:35:29 +0200 Subject: [PATCH] fix(nuxt): use a standalone tsconfig for the module build The tsconfig extended the generated playground tsconfig, which does not exist on a fresh checkout and broke the release build. --- packages/nuxt/tsconfig.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/nuxt/tsconfig.json b/packages/nuxt/tsconfig.json index 474e95469..22e7aed15 100644 --- a/packages/nuxt/tsconfig.json +++ b/packages/nuxt/tsconfig.json @@ -1,3 +1,12 @@ { - "extends": "./playground/.nuxt/tsconfig.json" + "compilerOptions": { + "target": "esnext", + "module": "esnext", + "moduleResolution": "bundler", + "strict": true, + "skipLibCheck": true, + "esModuleInterop": true, + "noEmit": true + }, + "include": ["src"] }