chore(next): updating nextjs version to latest

This commit is contained in:
Hexagonn
2024-10-24 08:39:01 +00:00
committed by GitHub
parent c6b81ec135
commit 16e18db06d
7 changed files with 542 additions and 218 deletions

View File

@@ -1,6 +1,10 @@
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@@ -18,10 +22,22 @@
}
],
"paths": {
"@/*": ["./src/*"],
"#/*": ["./*"]
}
"@/*": [
"./src/*"
],
"#/*": [
"./*"
]
},
"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"
]
}