From 78606fdda822f564b346b8bc143a3227e43e7ec1 Mon Sep 17 00:00:00 2001 From: Joshua Chen Date: Thu, 6 Jan 2022 07:33:58 +0800 Subject: [PATCH] docs: make tsconfig work OOTB in typescript guide (#6272) --- website/docs/typescript-support.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/website/docs/typescript-support.md b/website/docs/typescript-support.md index 90b676872d..71cbb97972 100644 --- a/website/docs/typescript-support.md +++ b/website/docs/typescript-support.md @@ -27,8 +27,7 @@ Then add `tsconfig.json` to your project root with the following content: ```json title="tsconfig.json" { - "extends": "@tsconfig/docusaurus/tsconfig.json", - "include": ["src/"] + "extends": "@tsconfig/docusaurus/tsconfig.json" } ```