We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bda52d commit 566c332Copy full SHA for 566c332
package.json
@@ -54,6 +54,12 @@
54
"use-local-storage-state": "^19.1.0",
55
"vercel": "^39.2.0",
56
"wagmi": "^2.13.3"
57
+ },
58
+ "devDependencies": {
59
+ "typescript": "^5",
60
+ "@types/node": "^20",
61
+ "@types/react": "^18",
62
+ "@types/react-dom": "^18",
63
+ "vercel": "^32.4.1"
64
}
-
65
tsconfig.json
@@ -22,13 +22,19 @@
22
"react-dom",
23
"node"
24
],
25
- "incremental": true
+ "incremental": true,
26
+ "plugins": [
27
+ {
28
+ "name": "next"
29
+ }
30
+ ]
31
},
32
"include": [
- "next-env.d.ts",
33
"**/*.ts",
34
"**/*.tsx",
- "layout/daySizes.js"
35
+ "layout/daySizes.js",
36
+ "next-env.d.ts",
37
+ ".next/types/**/*.ts"
38
39
"exclude": [
40
"node_modules",
0 commit comments