From 048cbb0b05f9cb47aa1a0f5fcd2f1866a86462d6 Mon Sep 17 00:00:00 2001 From: Jannatin Naim Date: Thu, 27 Jun 2024 20:03:11 +0600 Subject: [PATCH] fix(docs): update docs typo (#8613) Removed extra `{` at the end of the code snippet for a tsconfig.json file. --- docs/repo-docs/guides/tools/typescript.mdx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/repo-docs/guides/tools/typescript.mdx b/docs/repo-docs/guides/tools/typescript.mdx index 8d1b4f97b20fc..2aae88f6d0a2c 100644 --- a/docs/repo-docs/guides/tools/typescript.mdx +++ b/docs/repo-docs/guides/tools/typescript.mdx @@ -69,8 +69,7 @@ Inside `packages/tsconfig`, we have a few `json` files which represent different "isolatedModules": true, "strict": true, "noUncheckedIndexedAccess": true, - "module": "NodeNext", - } + "module": "NodeNext" } ```