Why is ignoreBuildErrors set to true in the example repos?
#10581
-
SummaryI am having trouble understanding why, in the next.js example turborepos, the next.config.ts is set like this Additional informationconst nextConfig: NextConfig = {
typescript: {
ignoreBuildErrors: true,
},
eslint: {
ignoreDuringBuilds: true,
},
}; |
Beta Was this translation helpful? Give feedback.
Answered by
anthonyshew
Jun 19, 2025
Replies: 1 comment
-
|
The expectation is that you are doing linting and type-checking in other parts of your CI. By setting linting elsewhere, you get faster builds and debugging loops, while keeping separate tasks in CI scoped to their specific concerns. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
anthonyshew
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The expectation is that you are doing linting and type-checking in other parts of your CI. By setting linting elsewhere, you get faster builds and debugging loops, while keeping separate tasks in CI scoped to their specific concerns.