Skip to content

Commit 90f40e8

Browse files
authored
Merge pull request #1226 from nasustim/renovate/major-nextjs-monorepo
fix(deps): update nextjs monorepo to v16 (major)
2 parents 62202fb + 8673514 commit 90f40e8

File tree

4 files changed

+73
-57
lines changed

4 files changed

+73
-57
lines changed

next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3-
/// <reference path="./.next/types/routes.d.ts" />
3+
import "./.next/types/routes.d.ts";
44

55
// NOTE: This file should not be edited
66
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

package-lock.json

Lines changed: 61 additions & 51 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
},
99
"dependencies": {
1010
"@acab/reset.css": "0.11.0",
11-
"@next/third-parties": "15.5.9",
11+
"@next/third-parties": "16.1.1",
1212
"clsx": "2.1.1",
13-
"next": "15.5.9",
13+
"next": "16.1.1",
1414
"next-sitemap": "4.2.3",
1515
"react": "19.2.3",
1616
"react-dom": "19.2.3",
@@ -20,7 +20,7 @@
2020
},
2121
"devDependencies": {
2222
"@biomejs/biome": "2.3.10",
23-
"@next/bundle-analyzer": "15.5.9",
23+
"@next/bundle-analyzer": "16.1.1",
2424
"@tailwindcss/postcss": "4.1.18",
2525
"@types/node": "24.10.4",
2626
"@types/react": "19.2.7",

tsconfig.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// "lib": [], /* Specify library files to be included in the compilation. */
99
// "allowJs": true, /* Allow javascript files to be compiled. */
1010
// "checkJs": true, /* Report errors in .js files. */
11-
"jsx": "preserve" /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */, // "declaration": true, /* Generates corresponding '.d.ts' file. */
11+
"jsx": "react-jsx" /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */, // "declaration": true, /* Generates corresponding '.d.ts' file. */
1212
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
1313
// "sourceMap": true, /* Generates corresponding '.map' file. */
1414
// "outFile": "./", /* Concatenate and emit output to single file. */
@@ -76,6 +76,12 @@
7676
}
7777
]
7878
},
79-
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
79+
"include": [
80+
"next-env.d.ts",
81+
"**/*.ts",
82+
"**/*.tsx",
83+
".next/types/**/*.ts",
84+
".next/dev/types/**/*.ts"
85+
],
8086
"exclude": ["node_modules"]
8187
}

0 commit comments

Comments
 (0)