chore: bumps next canary

This commit is contained in:
James
2024-04-27 12:03:41 -04:00
parent baaa7a48fb
commit 94f7edfa38
3 changed files with 298 additions and 55 deletions

View File

@ -1,7 +1,11 @@
{
"compilerOptions": {
"baseUrl": ".",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@ -19,10 +23,22 @@
}
],
"paths": {
"@/*": ["./src/*"],
"@payload-config": ["./payload.config.ts"]
}
"@/*": [
"./src/*"
],
"@payload-config": [
"./payload.config.ts"
]
},
"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"
]
}