diff --git a/website/docs/typescript-support.md b/website/docs/typescript-support.md index c8d7c117c6..ee49412882 100644 --- a/website/docs/typescript-support.md +++ b/website/docs/typescript-support.md @@ -28,7 +28,10 @@ Then add `tsconfig.json` to your project root with the following content: ```json title="tsconfig.json" { - "extends": "@tsconfig/docusaurus/tsconfig.json" + "extends": "@tsconfig/docusaurus/tsconfig.json", + "compilerOptions": { + "baseUrl": "." + } } ```