We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3683192 commit bcd9c19Copy full SHA for bcd9c19
docs/01-app/03-api-reference/05-config/01-next-config-js/typescript.mdx
@@ -29,6 +29,8 @@ Next.js fails your **production build** (`next build`) when TypeScript errors ar
29
30
If you'd like Next.js to dangerously produce production code even when your application has errors, you can disable the built-in type checking step.
31
32
+Note that this completely skips the TypeScript type checking step. It does not run TypeScript and suppress errors, it bypasses the check entirely.
33
+
34
If disabled, be sure you are running type checks as part of your build or deploy process, otherwise this can be very dangerous.
35
36
```js filename="next.config.js"
0 commit comments