From cfe7af79e9ffc0dfd59567b2e380e6032336f3c6 Mon Sep 17 00:00:00 2001 From: Meir Blachman Date: Thu, 18 Aug 2022 17:20:55 +0300 Subject: [PATCH] docs(advanced): fix typo in docs about global.d.ts (#16640) follow up to #16631 --- docs/src/test-advanced-js.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/test-advanced-js.md b/docs/src/test-advanced-js.md index 5f760a9194..6c6f4ba166 100644 --- a/docs/src/test-advanced-js.md +++ b/docs/src/test-advanced-js.md @@ -681,7 +681,7 @@ test('numeric ranges', () => { }); ``` -For TypeScript, also add the following to your [`global.d.ts`](https://www.typescriptlang.org/docs/handbook/declaration-files/templates/global-d-ts.html). If it does not exit, you need to create it inside your repository. Make sure that your `global.d.ts` gets included inside your `tsconfig.json` via the `include` or `compilerOptions.typeRoots` option so that your IDE will pick it up. +For TypeScript, also add the following to your [`global.d.ts`](https://www.typescriptlang.org/docs/handbook/declaration-files/templates/global-d-ts.html). If it does not exist, you need to create it inside your repository. Make sure that your `global.d.ts` gets included inside your `tsconfig.json` via the `include` or `compilerOptions.typeRoots` option so that your IDE will pick it up. You don't need it for JavaScript.