Skip to content

Commit 5dca0cd

Browse files
committed
Bump e2e/experimental to 16
1 parent b2f9b98 commit 5dca0cd

File tree

5 files changed

+388
-114
lines changed

5 files changed

+388
-114
lines changed

examples/e2e/experimental/next.config.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ const nextConfig: NextConfig = {
44
/* config options here */
55
cleanDistDir: true,
66
output: "standalone",
7-
eslint: {
8-
ignoreDuringBuilds: true,
9-
},
107
typescript: {
118
// Ignore type errors during build for now, we'll need to figure this out later
129
ignoreBuildErrors: true,

examples/e2e/experimental/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
},
1616
"dependencies": {
1717
"@opennextjs/cloudflare": "workspace:*",
18-
"next": "15.4.2-canary.29",
18+
"next": "16.0.0-canary.15",
1919
"react": "catalog:e2e",
2020
"react-dom": "catalog:e2e"
2121
},

examples/e2e/experimental/src/app/ppr/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { DynamicComponent } from "@/components/dynamic";
22
import { StaticComponent } from "@/components/static";
33
import { Suspense } from "react";
44

5-
export const experimental_ppr = true;
5+
// export const experimental_ppr = true;
66

77
export default function PPRPage() {
88
return (
Lines changed: 39 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,41 @@
11
{
2-
"compilerOptions": {
3-
"target": "ES2017",
4-
"lib": ["dom", "dom.iterable", "esnext"],
5-
"allowJs": true,
6-
"skipLibCheck": true,
7-
"strict": true,
8-
"noEmit": true,
9-
"esModuleInterop": true,
10-
"module": "esnext",
11-
"moduleResolution": "bundler",
12-
"resolveJsonModule": true,
13-
"isolatedModules": true,
14-
"jsx": "preserve",
15-
"incremental": true,
16-
"plugins": [
17-
{
18-
"name": "next"
19-
}
20-
],
21-
"paths": {
22-
"@/*": ["./src/*"]
23-
}
24-
},
25-
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
26-
"exclude": ["node_modules"]
2+
"compilerOptions": {
3+
"target": "ES2017",
4+
"lib": [
5+
"dom",
6+
"dom.iterable",
7+
"esnext"
8+
],
9+
"allowJs": true,
10+
"skipLibCheck": true,
11+
"strict": true,
12+
"noEmit": true,
13+
"esModuleInterop": true,
14+
"module": "esnext",
15+
"moduleResolution": "bundler",
16+
"resolveJsonModule": true,
17+
"isolatedModules": true,
18+
"jsx": "react-jsx",
19+
"incremental": true,
20+
"plugins": [
21+
{
22+
"name": "next"
23+
}
24+
],
25+
"paths": {
26+
"@/*": [
27+
"./src/*"
28+
]
29+
}
30+
},
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)