Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ oneline: How to configure the watch mode of TypeScript
translatable: true
---

As of TypeScript 3.8 and onward, the Typescript compiler exposes configuration which controls how it watches files and directories. Prior to this version, configuration required the use of environment variables which are still available.
As of TypeScript 3.8 and onward, the TypeScript compiler exposes configuration which controls how it watches files and directories. Prior to this version, configuration required the use of environment variables which are still available.

## Background

Expand Down Expand Up @@ -50,7 +50,7 @@ The suggested method of configuring watch behavior is through the new `watchOpti
}
```

For further details, see [the release notes for Typescript 3.8](/docs/handbook/release-notes/typescript-3-8.html#better-directory-watching-on-linux-and-watchoptions).
For further details, see [the release notes for TypeScript 3.8](/docs/handbook/release-notes/typescript-3-8.html#better-directory-watching-on-linux-and-watchoptions).

## Configuring file watching using environment variable `TSC_WATCHFILE`

Expand Down
4 changes: 2 additions & 2 deletions packages/documentation/copy/en/reference/Decorators.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ oneline: TypeScript Decorators overview
translatable: true
---

> NOTE  This document refers to an experimental stage 2 decorators implementation. Stage 3 decorator support is available since Typescript 5.0.
> See: [Decorators in Typescript 5.0](https://devblogs.microsoft.com/typescript/announcing-typescript-5-0/#decorators)
> NOTE  This document refers to an experimental stage 2 decorators implementation. Stage 3 decorator support is available since TypeScript 5.0.
> See: [Decorators in TypeScript 5.0](https://devblogs.microsoft.com/typescript/announcing-typescript-5-0/#decorators)

## Introduction

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ If you want all your projects to also use the options from the `@tsconfig/strict
This works to a point.
If you have any projects that *don't* want to use `@tsconfig/strictest`, they have to either manually disable the options, or create a separate version of `tsconfig.base.json` that *doesn't* extend from `@tsconfig/strictest`.

To give some more flexibility here, Typescript 5.0 now allows the `extends` field to take multiple entries.
To give some more flexibility here, TypeScript 5.0 now allows the `extends` field to take multiple entries.
For example, in this configuration file:

```jsonc
Expand Down