chore: update nextjs version

This commit is contained in:
Burhanuddin Udaipurwala 2022-02-06 18:28:37 +05:30
parent fdc891e473
commit d5ffd66d94
4 changed files with 204 additions and 608 deletions

View File

@ -1,5 +1,4 @@
/// <reference types="next" />
/// <reference types="next/types/global" />
/// <reference types="next/image-types/global" />
// NOTE: This file should not be edited

View File

@ -25,7 +25,7 @@
"kbar": "0.1.0-beta.6",
"lodash": "^4.17.21",
"match-sorter": "^6.3.0",
"next": "^11.0.0",
"next": "^12.0.10",
"next-mdx-remote": "^3.0.2",
"next-themes": "^0.0.15",
"parse-numeric-range": "1.2.0",

View File

@ -1,74 +1,75 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@components": [
"./src/components/index.ts"
],
"@primitives": [
"./src/components/primitives/index.ts"
],
"@components/": [
"./src/components/*"
],
"@content/*": [
"./content/*"
],
"@layouts/*": [
"./src/layouts/*"
],
"@hooks/*": [
"./src/hooks/*"
],
"@utils/*": [
"./src/utils/*"
],
"@theme/*": [
"./src/theme/*"
],
"@lib/*": [
"./src/lib/*"
]
},
"lib": [
"dom",
"es2015",
"ESNext.String"
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@components": [
"./src/components/index.ts"
],
"target": "esnext",
"jsx": "preserve",
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"types": [
"node"
"@primitives": [
"./src/components/primitives/index.ts"
],
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"resolveJsonModule": true,
"isolatedModules": true,
"strictNullChecks": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"noImplicitAny": true,
"skipLibCheck": true,
"module": "esnext",
"typeRoots": [
"../../node_modules/@types",
"./typings"
"@components/": [
"./src/components/*"
],
"@content/*": [
"./content/*"
],
"@layouts/*": [
"./src/layouts/*"
],
"@hooks/*": [
"./src/hooks/*"
],
"@utils/*": [
"./src/utils/*"
],
"@theme/*": [
"./src/theme/*"
],
"@lib/*": [
"./src/lib/*"
]
},
"include": [
"**/*.ts",
"**/*.tsx",
"**/*.js",
"**/*.jsx",
"next-env.d.ts"
"lib": [
"dom",
"es2015",
"ESNext.String"
],
"exclude": [
"node_modules"
]
}
"target": "esnext",
"jsx": "preserve",
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"types": [
"node"
],
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"resolveJsonModule": true,
"isolatedModules": true,
"strictNullChecks": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"noImplicitAny": true,
"skipLibCheck": true,
"module": "esnext",
"typeRoots": [
"../../node_modules/@types",
"./typings"
],
"incremental": true
},
"include": [
"**/*.ts",
"**/*.tsx",
"**/*.js",
"**/*.jsx",
"next-env.d.ts"
],
"exclude": [
"node_modules"
]
}

672
yarn.lock

File diff suppressed because it is too large Load Diff