Skip to content

Commit

Permalink
Upgrade major version of next.js
Browse files Browse the repository at this point in the history
  • Loading branch information
gerdesque committed Sep 25, 2022
1 parent 1707cb4 commit 1f83597
Show file tree
Hide file tree
Showing 5 changed files with 208 additions and 8 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 digitalwarenkombinat
Copyright (c) 2022 digitalwarenkombinat

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
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
189 changes: 189 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
"@material-ui/icons": "^4.11.2",
"clsx": "^1.1.1",
"file-saver": "^2.0.5",
"next": "^11.1.2",
"next": "^12.3.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-qr-code": "^2.0.2",
"react-qr-code": "^2.0.8",
"react-to-print": "^2.13.0",
"zustand": "^3.5.10"
},
Expand Down
20 changes: 16 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "es2015",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
Expand All @@ -12,8 +16,16 @@
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve"
"jsx": "preserve",
"incremental": true
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "public/mediaData.js"],
"exclude": ["node_modules"]
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"public/mediaData.js"
],
"exclude": [
"node_modules"
]
}

0 comments on commit 1f83597

Please sign in to comment.