fix: syntax issues

This commit is contained in:
2026-06-17 23:16:46 +05:30
parent 91fc2525b2
commit 90fb9922ac
11 changed files with 6889 additions and 39 deletions
+30 -6
View File
@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "ES2022",
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"lib": [
"DOM",
"DOM.Iterable",
"ES2022"
],
"module": "ESNext",
"moduleResolution": "Bundler",
"jsx": "preserve",
@@ -16,10 +20,30 @@
"noEmit": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@payload-config": ["./src/payload.config.ts"]
}
"@/*": [
"./src/*"
],
"@payload-config": [
"./src/payload.config.ts"
]
},
"plugins": [
{
"name": "next"
}
]
},
"include": ["src/**/*", "next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules", "dist", "build", ".next"]
"include": [
"**/*.ts",
"**/*.tsx",
"next-env.d.ts",
"src/**/*",
".next/types/**/*.ts"
],
"exclude": [
"node_modules",
"dist",
"build",
".next"
]
}