feat: downfgrade to next 15

This commit is contained in:
2025-11-23 05:56:08 +03:00
parent 20c86feb9e
commit 6daa1a5b09
3 changed files with 87 additions and 87 deletions

View File

@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "ES2017",
"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": "react-jsx",
"jsx": "preserve",
"incremental": true,
"plugins": [
{
@@ -20,7 +24,10 @@
],
"baseUrl": ".",
"paths": {
"@/*": ["src/*", "./*"]
"@/*": [
"src/*",
"./*"
]
}
},
"include": [
@@ -30,5 +37,7 @@
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": ["node_modules"]
"exclude": [
"node_modules"
]
}