Skip to content

Commit bab18d6

Browse files
Merge pull request #6 from nsyedanas/update-versions
updated version of react scheduler sample in next.js
2 parents 348fa20 + 57f5ace commit bab18d6

2 files changed

Lines changed: 29 additions & 15 deletions

File tree

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12-
"@syncfusion/ej2-react-schedule": "*",
13-
"@types/node": "20.4.8",
14-
"@types/react": "18.2.18",
15-
"@types/react-dom": "18.2.7",
16-
"eslint": "8.46.0",
17-
"eslint-config-next": "13.4.13",
18-
"next": "^14.2.15",
19-
"react": "18.2.0",
20-
"react-dom": "18.2.0",
21-
"typescript": "5.1.6"
12+
"@syncfusion/ej2-react-schedule": "^32.1.22",
13+
"@types/node": "25.0.6",
14+
"@types/react": "19.2.8",
15+
"@types/react-dom": "19.2.3",
16+
"eslint": "9.39.2",
17+
"eslint-config-next": "16.1.1",
18+
"next": "^16.1.1",
19+
"react": "19.2.3",
20+
"react-dom": "19.2.3",
21+
"typescript": "5.9.3"
2222
}
2323
}

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": "es5",
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,
@@ -12,17 +16,27 @@
1216
"moduleResolution": "bundler",
1317
"resolveJsonModule": true,
1418
"isolatedModules": true,
15-
"jsx": "preserve",
19+
"jsx": "react-jsx",
1620
"incremental": true,
1721
"plugins": [
1822
{
1923
"name": "next"
2024
}
2125
],
2226
"paths": {
23-
"@/*": ["./src/*"]
27+
"@/*": [
28+
"./src/*"
29+
]
2430
}
2531
},
26-
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
27-
"exclude": ["node_modules"]
32+
"include": [
33+
"next-env.d.ts",
34+
"**/*.ts",
35+
"**/*.tsx",
36+
".next/types/**/*.ts",
37+
".next/dev/types/**/*.ts"
38+
],
39+
"exclude": [
40+
"node_modules"
41+
]
2842
}

0 commit comments

Comments
 (0)