Skip to content

Commit 70aab14

Browse files
committed
WIP
1 parent 9f32624 commit 70aab14

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
/** @type {import('next').NextConfig} */
2-
module.exports = {
3-
reactStrictMode: true,
4-
transpilePackages: ["@repo/ui"],
1+
import type { NextConfig } from "next";
2+
3+
const nextConfig: NextConfig = {
54
typescript: {
65
ignoreBuildErrors: true,
76
},
87
eslint: {
98
ignoreDuringBuilds: true,
109
},
1110
};
11+
12+
export default nextConfig;

examples/with-tailwind/apps/docs/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"**/*.ts",
1212
"**/*.tsx",
1313
"next-env.d.ts",
14-
"next.config.js",
14+
"next.config.ts",
1515
".next/types/**/*.ts"
1616
],
1717
"exclude": ["node_modules"]
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
/** @type {import('next').NextConfig} */
2-
module.exports = {
3-
reactStrictMode: true,
4-
transpilePackages: ["@repo/ui"],
1+
import type { NextConfig } from "next";
2+
3+
const nextConfig: NextConfig = {
54
typescript: {
65
ignoreBuildErrors: true,
76
},
87
eslint: {
98
ignoreDuringBuilds: true,
109
},
1110
};
11+
12+
export default nextConfig;

examples/with-tailwind/apps/web/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"**/*.ts",
1212
"**/*.tsx",
1313
"next-env.d.ts",
14-
"next.config.js",
14+
"next.config.ts",
1515
".next/types/**/*.ts"
1616
],
1717
"exclude": ["node_modules"]

0 commit comments

Comments
 (0)