From 9b711883cfebfce0997cd9fe188a33cd433e9981 Mon Sep 17 00:00:00 2001 From: Tim Neutkens Date: Sun, 12 Jul 2020 21:44:37 +0200 Subject: [PATCH] Update docs about type checking (#15103) Related to #14997 --- docs/basic-features/typescript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basic-features/typescript.md b/docs/basic-features/typescript.md index 3086fd4702..99191121e9 100644 --- a/docs/basic-features/typescript.md +++ b/docs/basic-features/typescript.md @@ -43,7 +43,7 @@ You're now ready to start converting files from `.js` to `.tsx` and leveraging t > Next.js `strict` mode is turned off by default. When you feel comfortable with TypeScript, it's recommended to turn it on in your `tsconfig.json`. -By default, Next.js reports TypeScript errors during development for pages you are actively working on. TypeScript errors for inactive pages **do not** block the development process. +By default, Next.js will do type checking as part of `next build`. We recommend using code editor type checking during development. If you want to silence the error reports, refer to the documentation for [Ignoring TypeScript errors](/docs/api-reference/next.config.js/ignoring-typescript-errors.md). -- GitLab