Skip to content

Commit c7b8e77

Browse files
chore: update to latest next
1 parent 69b7c0d commit c7b8e77

File tree

4 files changed

+483
-241
lines changed

4 files changed

+483
-241
lines changed

apps/app/next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3-
/// <reference path="./.next/types/routes.d.ts" />
3+
import "./.next/dev/types/routes.d.ts";
44

55
// NOTE: This file should not be edited
66
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

apps/app/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929
"@radix-ui/react-switch": "^1.2.6",
3030
"@radix-ui/react-tabs": "^1.1.13",
3131
"@radix-ui/react-tooltip": "^1.2.8",
32+
"@solana-program/system": "^0.7.0",
33+
"@solana-program/token-2022": "^0.5.0",
3234
"@solana/accounts": "^5.0.0",
3335
"@solana/connector": "0.1.4",
34-
"@solana/react": "^5.0.0",
3536
"@solana/kit": "^5.0.0",
36-
"@solana-program/system": "^0.7.0",
37-
"@solana-program/token-2022": "^0.5.0",
37+
"@solana/react": "^5.0.0",
3838
"@solana/sysvars": "^3.0.3",
3939
"@tanstack/react-query": "^5.83.0",
4040
"@token-acl/abl-sdk": "^0.2.0",
@@ -44,7 +44,7 @@
4444
"immer": "^10.1.1",
4545
"lucide-react": "^0.294.0",
4646
"motion": "^11.11.17",
47-
"next": "15.5.7",
47+
"next": "16.1.0",
4848
"next-themes": "^0.2.1",
4949
"react": "^19.2.1",
5050
"react-dom": "^19.2.1",
@@ -65,7 +65,7 @@
6565
"@typescript-eslint/parser": "^8.34.0",
6666
"autoprefixer": "^10.4.21",
6767
"eslint": "^9.32.0",
68-
"eslint-config-next": "15.5.7",
68+
"eslint-config-next": "16.1.0",
6969
"eslint-plugin-import": "^2.32.0",
7070
"postcss": "^8.5.6",
7171
"tailwindcss": "^4.1.17",

apps/app/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"moduleResolution": "bundler",
1212
"resolveJsonModule": true,
1313
"isolatedModules": true,
14-
"jsx": "preserve",
14+
"jsx": "react-jsx",
1515
"incremental": true,
1616
"plugins": [
1717
{
@@ -24,6 +24,6 @@
2424
"@mosaic/sdk": ["../../packages/sdk/src"]
2525
}
2626
},
27-
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
27+
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", ".next/dev/types/**/*.ts"],
2828
"exclude": ["node_modules"]
2929
}

0 commit comments

Comments
 (0)