Skip to content

Commit

Permalink
chore: Update Next.js to version 15.1.3 and related dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
miurla committed Jan 2, 2025
1 parent d01314b commit 75fe3aa
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"jsdom": "^22.1.0",
"katex": "^0.16.10",
"lucide-react": "^0.363.0",
"next": "^14.2.3",
"next": "^15.1.3",
"next-themes": "^0.3.0",
"node-html-parser": "^6.1.13",
"ollama-ai-provider": "^1.0.0",
Expand Down
24 changes: 19 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
Expand All @@ -18,9 +22,19 @@
}
],
"paths": {
"@/*": ["./*"]
}
"@/*": [
"./*"
]
},
"target": "ES2017"
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}

0 comments on commit 75fe3aa

Please sign in to comment.