Skip to content

Commit

Permalink
Merge pull request #31 from p12-sandbox/updata/packages
Browse files Browse the repository at this point in the history
Next.jsのバージョンを変更
  • Loading branch information
yukyu30 authored Apr 23, 2022
2 parents 4fd8430 + 8520f60 commit 90993aa
Show file tree
Hide file tree
Showing 4 changed files with 466 additions and 1,781 deletions.
1 change: 0 additions & 1 deletion next-env.d.ts
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
},
"dependencies": {
"dayjs": "^1.9.3",
"next": "11.1.2",
"next": "^12.1.5",
"next-themes": "^0.0.15",
"react": "17.0.2",
"react-dom": "17.0.2"
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.2",
Expand Down
24 changes: 19 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
Expand All @@ -17,9 +21,19 @@
"jsx": "preserve",
"baseUrl": ".",
"paths": {
"@*": ["./*"]
}
"@*": [
"./*"
]
},
"incremental": true
},
"exclude": ["node_modules"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "next.config.js"]
"exclude": [
"node_modules"
],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"next.config.js"
]
}
Loading

0 comments on commit 90993aa

Please sign in to comment.