chore: next upgrade

This commit is contained in:
2026-02-27 17:01:14 +01:00
parent 0c3a54c62c
commit fcbd9d0533
4 changed files with 1049 additions and 841 deletions

View File

@@ -37,14 +37,14 @@
"i18next-browser-languagedetector": "^8.0.4",
"lucide-react": "^0.487.0",
"mongodb": "^6.20.0",
"next": "^15.5.9",
"next": "^16.1.6",
"next-auth": "^5.0.0-beta.30",
"next-themes": "0.2.1",
"photoswipe": "^5.4.4",
"pino": "^10.1.0",
"pino-pretty": "^13.1.2",
"react": "19.2.0",
"react-dom": "19.2.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-i18next": "^15.4.1",
"sharp": "0.33.2",
"tailwind-merge": "^3.0.2",
@@ -54,13 +54,13 @@
},
"devDependencies": {
"@types/node": "24.7.2",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "6.21.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "8.56.1",
"autoprefixer": "10.4.17",
"eslint": "8.56.0",
"eslint-config-next": "15.2.0",
"eslint": "9.39.3",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"eslint-plugin-unused-imports": "^4.1.4",

1841
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -51,10 +51,4 @@ const logger = pino({
}),
});
// Prevent memory leaks in development (Node.js runtime only)
if (!isProduction && typeof process.stdout !== "undefined") {
process.stdout.setMaxListeners?.(20);
process.stderr.setMaxListeners?.(20);
}
export default logger;

View File

@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@@ -11,7 +15,7 @@
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
@@ -19,9 +23,20 @@
}
],
"paths": {
"@/*": ["./src/*"]
"@/*": [
"./src/*"
]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules", "temp"]
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules",
"temp"
]
}