Skip to content

Commit a13f852

Browse files
committed
chore(frontend): update to nextjs 16
1 parent 60c0a3e commit a13f852

File tree

3 files changed

+77
-63
lines changed

3 files changed

+77
-63
lines changed

frontend/package-lock.json

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

frontend/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@
3838
"input-otp": "^1.4.2",
3939
"lucide-react": "^0.545.0",
4040
"motion": "^12.23.24",
41-
"next": "15.5.4",
41+
"next": "^16.0.0",
4242
"next-runtime-env": "^3.3.0",
4343
"next-themes": "^0.4.6",
44-
"react": "19.1.0",
45-
"react-dom": "19.1.0",
44+
"react": "^19.2.0",
45+
"react-dom": "^19.2.0",
4646
"react-use-measure": "^2.1.7",
4747
"recharts": "^2.15.4",
4848
"sonner": "^2.0.7",

frontend/tsconfig.json

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
{
22
"compilerOptions": {
33
"target": "ES2017",
4-
"lib": ["dom", "dom.iterable", "esnext"],
4+
"lib": [
5+
"dom",
6+
"dom.iterable",
7+
"esnext"
8+
],
59
"allowJs": true,
610
"skipLibCheck": true,
711
"strict": true,
@@ -11,17 +15,27 @@
1115
"moduleResolution": "bundler",
1216
"resolveJsonModule": true,
1317
"isolatedModules": true,
14-
"jsx": "preserve",
18+
"jsx": "react-jsx",
1519
"incremental": true,
1620
"plugins": [
1721
{
1822
"name": "next"
1923
}
2024
],
2125
"paths": {
22-
"@/*": ["./*"]
26+
"@/*": [
27+
"./*"
28+
]
2329
}
2430
},
25-
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
26-
"exclude": ["node_modules"]
31+
"include": [
32+
"next-env.d.ts",
33+
"**/*.ts",
34+
"**/*.tsx",
35+
".next/types/**/*.ts",
36+
".next/dev/types/**/*.ts"
37+
],
38+
"exclude": [
39+
"node_modules"
40+
]
2741
}

0 commit comments

Comments
 (0)