⬆️ Upgrade to next 13.5 (#880)

This commit is contained in:
Luke Vella 2023-09-20 10:36:09 +01:00 committed by GitHub
parent 8ff6cc0c06
commit d0104a76a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 572 additions and 180 deletions

View file

@ -50,7 +50,6 @@
"@types/smoothscroll-polyfill": "^0.3.1",
"cheerio": "^1.0.0-rc.12",
"cross-env": "^7.0.3",
"eslint-config-next": "^13.0.1",
"eslint-config-turbo": "^0.0.9",
"eslint-import-resolver-typescript": "^2.7.0",
"eslint-plugin-import": "^2.22.1",

View file

@ -1,5 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
/// <reference types="next/navigation-types/compat/navigation" />
// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.

View file

@ -18,7 +18,7 @@
"dependencies": {
"@floating-ui/react-dom-interactions": "^0.13.3",
"@headlessui/react": "^1.7.7",
"@hookform/resolvers": "^3.1.0",
"@hookform/resolvers": "^3.3.1",
"@next/bundle-analyzer": "^12.3.4",
"@radix-ui/react-slot": "^1.0.1",
"@radix-ui/react-switch": "^1.0.2",
@ -65,8 +65,7 @@
"smoothscroll-polyfill": "^0.4.4",
"spacetime": "^7.4.7",
"superjson": "^1.12.2",
"timezone-soft": "^1.4.1",
"zod": "^3.20.2"
"timezone-soft": "^1.4.1"
},
"devDependencies": {
"@playwright/test": "^1.35.1",
@ -81,7 +80,6 @@
"@types/smoothscroll-polyfill": "^0.3.1",
"cheerio": "^1.0.0-rc.12",
"cross-env": "^7.0.3",
"eslint-config-next": "^13.0.1",
"eslint-config-turbo": "^0.0.9",
"eslint-import-resolver-typescript": "^2.7.0",
"eslint-plugin-import": "^2.22.1",

View file

@ -17,8 +17,19 @@
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve"
"jsx": "preserve",
"plugins": [
{
"name": "next"
}
]
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "next-i18next.config.js"],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"next-i18next.config.js",
".next/types/**/*.ts"
],
"exclude": ["node_modules", "**/*.js"]
}