After updating from 9.2.2 to 9.4.4 type-checking is not performed anymore in runtime #14216
-
I have a custom server configured. In 9.2.2 I see in the output Do I need to adjust something in next/babel configuration? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Next.js doesn't type-check the code during development anymore since it slows down the build (#12735 (comment)). The editor will warn you about any type errors and you can manually check the types for the entire project running Type-checking is still performed during |
Beta Was this translation helpful? Give feedback.
Next.js doesn't type-check the code during development anymore since it slows down the build (#12735 (comment)). The editor will warn you about any type errors and you can manually check the types for the entire project running
tsc
.Type-checking is still performed during
next build
.