Skip to content

Commit b889105

Browse files
authored
Fixed a small grammar mistake - like -> likely
1 parent 49d5222 commit b889105

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/faq/errors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ This happens when you're trying to run your application in watch mode, e.g `npm
9393
XX:XX:XX AM - File change detected. Starting incremental compilation...
9494
XX:XX:XX AM - Found 0 errors. Watching for file changes.
9595
```
96-
When you're using the NestJS CLI to start your application in watch mode it is done by calling `tsc --watch`, and as of version 4.9 of TypeScript, a [new strategy](https://devblogs.microsoft.com/typescript/announcing-typescript-4-9/#file-watching-now-uses-file-system-events) for detecting file changes is used which is like to be the cause of this problem.
96+
When you're using the NestJS CLI to start your application in watch mode it is done by calling `tsc --watch`, and as of version 4.9 of TypeScript, a [new strategy](https://devblogs.microsoft.com/typescript/announcing-typescript-4-9/#file-watching-now-uses-file-system-events) for detecting file changes is used which is likely to be the cause of this problem.
9797
In order to fix this problem, you need to add a setting to your tsconfig.json file after the `"compilerOptions"` option as follows:
9898
```bash
9999
"watchOptions": {

0 commit comments

Comments
 (0)