Skip to content

Commit 566c332

Browse files
committed
fix: invalid app export
1 parent 8bda52d commit 566c332

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,12 @@
5454
"use-local-storage-state": "^19.1.0",
5555
"vercel": "^39.2.0",
5656
"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"
5764
}
58-
5965
}

tsconfig.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,19 @@
2222
"react-dom",
2323
"node"
2424
],
25-
"incremental": true
25+
"incremental": true,
26+
"plugins": [
27+
{
28+
"name": "next"
29+
}
30+
]
2631
},
2732
"include": [
28-
"next-env.d.ts",
2933
"**/*.ts",
3034
"**/*.tsx",
31-
"layout/daySizes.js"
35+
"layout/daySizes.js",
36+
"next-env.d.ts",
37+
".next/types/**/*.ts"
3238
],
3339
"exclude": [
3440
"node_modules",

0 commit comments

Comments
 (0)