From 1b9300fa66bb20d35bd8973ccf1bcb0cfe7558d0 Mon Sep 17 00:00:00 2001 From: Olivier Tassinari Date: Fri, 27 Dec 2024 02:13:07 +0100 Subject: [PATCH] [core] Sync with other repos --- docs/tsconfig.json | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/docs/tsconfig.json b/docs/tsconfig.json index f0a1f5129d6667..f72d9e329a56d7 100644 --- a/docs/tsconfig.json +++ b/docs/tsconfig.json @@ -1,8 +1,6 @@ { "extends": "../tsconfig.json", - "include": ["next-env.d.ts", "types", "src", "pages", "data", "next.config.mjs"], "compilerOptions": { - "moduleResolution": "Bundler", "allowJs": true, "isolatedModules": true, /* files are emitted by babel */ @@ -11,8 +9,15 @@ "resolveJsonModule": true, "skipLibCheck": true, "esModuleInterop": true, - "types": ["react", "mocha"], "incremental": true }, - "exclude": ["node_modules"] + "include": [ + "next-env.d.ts", + "next.config.mjs", + "types", + "src", + "pages", + "data" + ], + "exclude": ["docs/.next", "docs/export", "node_modules"] }