Skip to content

Commit 5dc121c

Browse files
committed
♻️ Upgrade the version of next.js to 15.5.7
1 parent 8e7704c commit 5dc121c

File tree

2 files changed

+23
-7
lines changed

2 files changed

+23
-7
lines changed

frontend/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"katex": "^0.16.11",
6262
"lucide-react": "^0.454.0",
6363
"mermaid": "^11.12.0",
64-
"next": "15.4.5",
64+
"next": "15.5.7",
6565
"next-i18next": "^15.4.2",
6666
"next-themes": "^0.4.4",
6767
"react": "18.2.0",
@@ -97,7 +97,7 @@
9797
"@types/react": "18.3.20",
9898
"@types/react-dom": "18.3.6",
9999
"eslint": "^9.34.0",
100-
"eslint-config-next": "15.5.0",
100+
"eslint-config-next": "15.5.7",
101101
"postcss": "^8",
102102
"tailwindcss": "^3.4.17",
103103
"typescript": "5.8.3"

frontend/tsconfig.json

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
{
22
"compilerOptions": {
3-
"lib": ["dom", "dom.iterable", "esnext"],
3+
"lib": [
4+
"dom",
5+
"dom.iterable",
6+
"esnext"
7+
],
48
"allowJs": true,
59
"target": "ES6",
610
"skipLibCheck": true,
@@ -19,10 +23,22 @@
1923
}
2024
],
2125
"paths": {
22-
"@/*": ["./*"],
23-
"@/app/*": ["./app/[locale]/*"]
26+
"@/*": [
27+
"./*"
28+
],
29+
"@/app/*": [
30+
"./app/[locale]/*"
31+
]
2432
}
2533
},
26-
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
27-
"exclude": ["node_modules"]
34+
"include": [
35+
"next-env.d.ts",
36+
"**/*.ts",
37+
"**/*.tsx",
38+
".next/types/**/*.ts",
39+
".next/dev/types/**/*.ts"
40+
],
41+
"exclude": [
42+
"node_modules"
43+
]
2844
}

0 commit comments

Comments
 (0)