From 60f546ccdc5d7c314b678258c8255ca9a2621354 Mon Sep 17 00:00:00 2001 From: avivkeller Date: Mon, 1 Sep 2025 09:33:26 -0400 Subject: [PATCH] chore(nextjs): configure tsconfig --- apps/site/tsconfig.json | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/apps/site/tsconfig.json b/apps/site/tsconfig.json index dbb0784d61bda..a9ca81bd98594 100644 --- a/apps/site/tsconfig.json +++ b/apps/site/tsconfig.json @@ -14,19 +14,26 @@ "isolatedModules": true, "jsx": "preserve", "incremental": true, - "plugins": [{ "name": "next" }], + "plugins": [ + { + "name": "next" + } + ], "baseUrl": "." }, - "mdx": { "checkMdx": true }, + "mdx": { + "checkMdx": true + }, "include": [ - "**/*.ts", - "**/*.tsx", "**/*.js", - "**/*.mjs", "**/*.jsx", "**/*.mdx", + "**/*.mjs", + "**/*.ts", + "**/*.tsx", // Explicitly include since the globs won't match the `.` - ".stylelintrc.mjs" + ".stylelintrc.mjs", + ".next/types/**/*.ts" ], "exclude": ["node_modules", ".next"] }