Skip to content

Commit c4f26d9

Browse files
committed
Update Next Config
1 parent 6d2afc9 commit c4f26d9

4 files changed

Lines changed: 18 additions & 7 deletions

File tree

tests/reacttest/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,6 @@ yarn-error.log*
3535

3636
# typescript
3737
*.tsbuildinfo
38+
39+
# next config
40+
!next.config.js

tests/reacttest/next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/// <reference types="next/image-types/global" />
33

44
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
5+
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.

tests/reacttest/next.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
eslint: {
3+
ignoreDuringBuilds: true
4+
}
5+
}

tests/reacttest/package.json

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,25 @@
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {
6-
"dev": "next dev",
6+
"dev": "next dev --turbopack",
77
"build": "next build",
88
"start": "next start",
99
"lint": "next lint"
1010
},
1111
"dependencies": {
1212
"linq-to-typescript": "file:../../dist",
13-
"next": "^14.2.15",
14-
"react": "^18.3.1",
15-
"react-dom": "^18.3.1"
13+
"next": "15.3.3",
14+
"react": "19.1.0",
15+
"react-dom": "19.1.0"
1616
},
1717
"devDependencies": {
1818
"@types/node": "^20.10.5",
19-
"@types/react": "^18.2.45",
19+
"@types/react": "19.1.8",
2020
"eslint": "^8.57.1",
21-
"eslint-config-next": "^14.2.15",
21+
"eslint-config-next": "15.3.3",
2222
"typescript": "^5.6.3"
23+
},
24+
"overrides": {
25+
"@types/react": "19.1.8"
2326
}
2427
}

0 commit comments

Comments
 (0)