Commit 70aab14 1 parent 9f32624 commit 70aab14 Copy full SHA for 70aab14
File tree 4 files changed +12
-10
lines changed
examples/with-tailwind/apps
4 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 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 = {
5
4
typescript : {
6
5
ignoreBuildErrors : true ,
7
6
} ,
8
7
eslint : {
9
8
ignoreDuringBuilds : true ,
10
9
} ,
11
10
} ;
11
+
12
+ export default nextConfig ;
Original file line number Diff line number Diff line change 11
11
"**/*.ts" ,
12
12
"**/*.tsx" ,
13
13
"next-env.d.ts" ,
14
- "next.config.js " ,
14
+ "next.config.ts " ,
15
15
".next/types/**/*.ts"
16
16
] ,
17
17
"exclude" : [ "node_modules" ]
Original file line number Diff line number Diff line change 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 = {
5
4
typescript : {
6
5
ignoreBuildErrors : true ,
7
6
} ,
8
7
eslint : {
9
8
ignoreDuringBuilds : true ,
10
9
} ,
11
10
} ;
11
+
12
+ export default nextConfig ;
Original file line number Diff line number Diff line change 11
11
"**/*.ts" ,
12
12
"**/*.tsx" ,
13
13
"next-env.d.ts" ,
14
- "next.config.js " ,
14
+ "next.config.ts " ,
15
15
".next/types/**/*.ts"
16
16
] ,
17
17
"exclude" : [ "node_modules" ]
You can’t perform that action at this time.
0 commit comments