From f78b0835534b47950d62acc7b2f3551ff1f5e27e Mon Sep 17 00:00:00 2001 From: Nicola Spadari Date: Wed, 16 Jul 2025 14:23:00 +0200 Subject: [PATCH] chore: reference tsconfig from nuxt 4 --- tsconfig.json | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index db2ec82..67e1983 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,13 +1,22 @@ { - "extends": "./.nuxt/tsconfig.json", "compilerOptions": { + "composite": true, "target": "ESNext", - "module": "ESNext", - "strict": true + "module": "ESNext" }, - "include": [ - ".nuxt/nuxt.d.ts", - "env.d.ts", - "**/*" - ] + "references": [ + { + "path": "./.nuxt/tsconfig.app.json" + }, + { + "path": "./.nuxt/tsconfig.server.json" + }, + { + "path": "./.nuxt/tsconfig.shared.json" + }, + { + "path": "./.nuxt/tsconfig.node.json" + } + ], + "files": [] }