Skip to content

Commit d6e02dd

Browse files
committed
chore: bump deps for nextjs and react
Signed-off-by: Tyler Slaton <[email protected]>
1 parent 8a78d5e commit d6e02dd

File tree

2 files changed

+23
-9
lines changed

2 files changed

+23
-9
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
"@copilotkit/react-core": "1.10.6",
1919
"@copilotkit/react-ui": "1.10.6",
2020
"@copilotkit/runtime": "1.10.6",
21-
"next": "15.3.2",
22-
"react": "^19.0.0",
23-
"react-dom": "^19.0.0",
21+
"next": "16.0.1",
22+
"react": "^19.2.0",
23+
"react-dom": "^19.2.0",
2424
"zod": "^3.24.4"
2525
},
2626
"devDependencies": {
@@ -32,7 +32,7 @@
3232
"@types/react-dom": "^19",
3333
"concurrently": "^9.1.2",
3434
"eslint": "^9",
35-
"eslint-config-next": "15.3.2",
35+
"eslint-config-next": "16.0.1",
3636
"tailwindcss": "^4",
3737
"typescript": "^5"
3838
}

tsconfig.json

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
{
22
"compilerOptions": {
33
"target": "ES2017",
4-
"lib": ["dom", "dom.iterable", "esnext"],
4+
"lib": [
5+
"dom",
6+
"dom.iterable",
7+
"esnext"
8+
],
59
"allowJs": true,
610
"skipLibCheck": true,
711
"strict": true,
@@ -11,17 +15,27 @@
1115
"moduleResolution": "bundler",
1216
"resolveJsonModule": true,
1317
"isolatedModules": true,
14-
"jsx": "preserve",
18+
"jsx": "react-jsx",
1519
"incremental": true,
1620
"plugins": [
1721
{
1822
"name": "next"
1923
}
2024
],
2125
"paths": {
22-
"@/*": ["./src/*"]
26+
"@/*": [
27+
"./src/*"
28+
]
2329
}
2430
},
25-
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
26-
"exclude": ["node_modules"]
31+
"include": [
32+
"next-env.d.ts",
33+
"**/*.ts",
34+
"**/*.tsx",
35+
".next/types/**/*.ts",
36+
".next/dev/types/**/*.ts"
37+
],
38+
"exclude": [
39+
"node_modules"
40+
]
2741
}

0 commit comments

Comments
 (0)