Update Next.js to 16 (#43)

* Update all dependencies to v16

* Update to Next.js 16

* Remove eslint from build

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Vitaly Rtishchev <rtivital@gmail.com>
This commit is contained in:
renovate[bot]
2025-10-26 10:41:40 +03:00
committed by GitHub
parent 4bb12a4a28
commit 161eea40d5
6 changed files with 257 additions and 399 deletions

View File

@ -1,16 +1,8 @@
{
"compilerOptions": {
"types": [
"node",
"jest",
"@testing-library/jest-dom"
],
"types": ["node", "jest", "@testing-library/jest-dom"],
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@ -21,12 +13,10 @@
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"paths": {
"@/*": [
"./*"
]
"@/*": ["./*"]
},
"plugins": [
{
@ -40,9 +30,8 @@
".storybook/main.ts",
".storybook/preview.tsx",
"next-env.d.ts",
".next/types/**/*.ts"
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules"
]
"exclude": ["node_modules"]
}