From bb07135b78ebedd2d31deb70bf92cf5c715c1278 Mon Sep 17 00:00:00 2001 From: Anthony Rosequist Date: Mon, 27 Jan 2025 12:16:11 -0600 Subject: [PATCH] docs: fix typo (#9814) --- docs/repo-docs/guides/tools/typescript.mdx | 24 ++++++++++++---------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/docs/repo-docs/guides/tools/typescript.mdx b/docs/repo-docs/guides/tools/typescript.mdx index a578285f11e0e..568dce3bfc2b6 100644 --- a/docs/repo-docs/guides/tools/typescript.mdx +++ b/docs/repo-docs/guides/tools/typescript.mdx @@ -59,17 +59,19 @@ pnpm dlx create-turbo@latest Inside `packages/typescript-config`, you have a few `json` files which represent different ways you might want to configure TypeScript in various packages. The `base.json` file is extended by every other `tsconfig.json` in the workspace and looks like this: ```json title="./packages/typescript-config/base.json" -"compilerOptions": { - "esModuleInterop": true, - "skipLibCheck": true, - "target": "es2022", - "allowJs": true, - "resolveJsonModule": true, - "moduleDetection": "force", - "isolatedModules": true, - "strict": true, - "noUncheckedIndexedAccess": true, - "module": "NodeNext" +{ + "compilerOptions": { + "esModuleInterop": true, + "skipLibCheck": true, + "target": "es2022", + "allowJs": true, + "resolveJsonModule": true, + "moduleDetection": "force", + "isolatedModules": true, + "strict": true, + "noUncheckedIndexedAccess": true, + "module": "NodeNext" + } } ```