BUILD TypeCheck and Lint disabled
I’ve seen Theo disabling typecheck and eslint during the build process, which greatly improves the build time. How can I apply these steps in a separate workflow? What are the equivalent npm commands for running typecheck and eslint independently as they run during the build? Will these separate commands execute the same steps as during the build process, or are there any differences?
1 Reply
pnpm next lint
and pnpm tsc
should be the same