mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
chore: update nextjs version
This commit is contained in:
parent
fdc891e473
commit
d5ffd66d94
1
apps/docs/next-env.d.ts
vendored
1
apps/docs/next-env.d.ts
vendored
@ -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
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -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"
|
||||
]
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user