From d8dbace1c9ffe46691944554883c9919c4546158 Mon Sep 17 00:00:00 2001 From: Olivier Tassinari Date: Fri, 27 Dec 2024 02:10:59 +0100 Subject: [PATCH] [core] Sync with other repos --- docs/tsconfig.json | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/docs/tsconfig.json b/docs/tsconfig.json index 1975578452299..98525baba2518 100644 --- a/docs/tsconfig.json +++ b/docs/tsconfig.json @@ -5,17 +5,12 @@ "isolatedModules": true, /* files are emitted by babel */ "noEmit": true, + "noUnusedLocals": true, "resolveJsonModule": true, "skipLibCheck": true, "esModuleInterop": true, "incremental": true }, - "include": [ - "pages/**/*.ts*", - "data/**/*", - "src/modules/components/**/*", - "next.config.mjs", - "docs-env.d.ts" - ], + "include": ["next-env.d.ts", "next.config.mjs", "docs-env.d.ts", "src", "pages/**/*.ts*", "data"], "exclude": ["docs/.next", "docs/export", "pages/playground"] }