docs(advanced): improve docs about global.d.ts (#16631)
This commit is contained in:
parent
3843a15d5f
commit
d7ba592704
|
|
@ -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
|
||||
// global.d.ts
|
||||
|
|
|
|||
Loading…
Reference in a new issue