We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be68718 commit 35c795bCopy full SHA for 35c795b
next.config.js
@@ -19,6 +19,9 @@ const nextConfig = {
19
eslint: {
20
ignoreDuringBuilds: true, // ✅ This prevents ESLint errors from failing `next build`
21
},
22
+ typescript: {
23
+ tsconfigPath: "./tsconfig.build.json",
24
+ },
25
26
webpack(config, { isServer }) {
27
config.module.rules.push({
tsconfig.build.json
@@ -9,4 +9,8 @@
9
"postcss.config.js",
10
"next-sitemap.config.js",
11
],
12
+ "exclude": [
13
+ "jest.config.ts",
14
+ "jest.setup.ts",
15
+ ]
16
}
0 commit comments