Update dependencies to the latest version

This commit is contained in:
Vitaly Rtishchev
2025-10-01 15:27:25 +03:00
parent c6079c7741
commit 7a9918204c
3 changed files with 775 additions and 507 deletions

View File

@ -1,8 +1,16 @@
{
"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,
@ -16,15 +24,25 @@
"jsx": "preserve",
"incremental": true,
"paths": {
"@/*": ["./*"]
}
"@/*": [
"./*"
]
},
"plugins": [
{
"name": "next"
}
]
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".storybook/main.ts",
".storybook/preview.tsx"
".storybook/preview.tsx",
"next-env.d.ts",
".next/types/**/*.ts"
],
"exclude": ["node_modules"]
"exclude": [
"node_modules"
]
}