docs(advanced): improve docs about global.d.ts (#16631)

This commit is contained in:
Max Schmitt 2022-08-18 11:34:10 +02:00 committed by GitHub
parent 3843a15d5f
commit d7ba592704
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -681,7 +681,9 @@ test('numeric ranges', () => {
}); });
``` ```
For TypeScript, also add the following to `global.d.ts`. You don't need it for JavaScript. 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.
You don't need it for JavaScript.
```js ```js
// global.d.ts // global.d.ts