Skip to content

Commit 24dbb40

Browse files
ci: apply automated fixes
1 parent 45eb471 commit 24dbb40

File tree

10 files changed

+29
-117
lines changed

10 files changed

+29
-117
lines changed
Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
22
"compilerOptions": {
3-
"lib": [
4-
"dom",
5-
"dom.iterable",
6-
"esnext"
7-
],
3+
"lib": ["dom", "dom.iterable", "esnext"],
84
"allowJs": true,
95
"skipLibCheck": true,
106
"strict": true,
@@ -19,12 +15,6 @@
1915
"incremental": true,
2016
"target": "ES2017"
2117
},
22-
"include": [
23-
"next-env.d.ts",
24-
"**/*.ts",
25-
"**/*.tsx"
26-
],
27-
"exclude": [
28-
"node_modules"
29-
]
18+
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
19+
"exclude": ["node_modules"]
3020
}
Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
22
"compilerOptions": {
3-
"lib": [
4-
"dom",
5-
"dom.iterable",
6-
"esnext"
7-
],
3+
"lib": ["dom", "dom.iterable", "esnext"],
84
"allowJs": true,
95
"skipLibCheck": true,
106
"strict": true,
@@ -19,12 +15,6 @@
1915
"incremental": true,
2016
"target": "ES2017"
2117
},
22-
"include": [
23-
"next-env.d.ts",
24-
"**/*.ts",
25-
"**/*.tsx"
26-
],
27-
"exclude": [
28-
"node_modules"
29-
]
18+
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
19+
"exclude": ["node_modules"]
3020
}
Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
22
"compilerOptions": {
3-
"lib": [
4-
"dom",
5-
"dom.iterable",
6-
"esnext"
7-
],
3+
"lib": ["dom", "dom.iterable", "esnext"],
84
"allowJs": true,
95
"skipLibCheck": true,
106
"strict": true,
@@ -19,12 +15,6 @@
1915
"incremental": true,
2016
"target": "ES2017"
2117
},
22-
"include": [
23-
"next-env.d.ts",
24-
"**/*.ts",
25-
"**/*.tsx"
26-
],
27-
"exclude": [
28-
"node_modules"
29-
]
18+
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
19+
"exclude": ["node_modules"]
3020
}

examples/react/nextjs-app-prefetching/tsconfig.json

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{
22
"compilerOptions": {
33
"target": "ES5",
4-
"lib": [
5-
"dom",
6-
"dom.iterable",
7-
"esnext"
8-
],
4+
"lib": ["dom", "dom.iterable", "esnext"],
95
"allowJs": true,
106
"skipLibCheck": true,
117
"strict": true,
@@ -24,9 +20,7 @@
2420
}
2521
],
2622
"paths": {
27-
"@/*": [
28-
"./*"
29-
]
23+
"@/*": ["./*"]
3024
}
3125
},
3226
"include": [
@@ -37,7 +31,5 @@
3731
".eslintrc.cjs",
3832
".next/dev/types/**/*.ts"
3933
],
40-
"exclude": [
41-
"node_modules"
42-
]
34+
"exclude": ["node_modules"]
4335
}

examples/react/nextjs-suspense-streaming/tsconfig.json

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{
22
"compilerOptions": {
33
"target": "ES5",
4-
"lib": [
5-
"dom",
6-
"dom.iterable",
7-
"esnext"
8-
],
4+
"lib": ["dom", "dom.iterable", "esnext"],
95
"allowJs": true,
106
"skipLibCheck": true,
117
"strict": true,
@@ -31,7 +27,5 @@
3127
".next/types/**/*.ts",
3228
".next/dev/types/**/*.ts"
3329
],
34-
"exclude": [
35-
"node_modules"
36-
]
30+
"exclude": ["node_modules"]
3731
}
Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
22
"compilerOptions": {
3-
"lib": [
4-
"dom",
5-
"dom.iterable",
6-
"esnext"
7-
],
3+
"lib": ["dom", "dom.iterable", "esnext"],
84
"allowJs": true,
95
"skipLibCheck": true,
106
"strict": true,
@@ -19,12 +15,6 @@
1915
"incremental": true,
2016
"target": "ES2017"
2117
},
22-
"include": [
23-
"next-env.d.ts",
24-
"**/*.ts",
25-
"**/*.tsx"
26-
],
27-
"exclude": [
28-
"node_modules"
29-
]
18+
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
19+
"exclude": ["node_modules"]
3020
}

examples/react/optimistic-updates-cache/tsconfig.json

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22
"compilerOptions": {
33
"strict": true,
44
"esModuleInterop": true,
5-
"lib": [
6-
"DOM",
7-
"ES2015"
8-
],
5+
"lib": ["DOM", "ES2015"],
96
"jsx": "react-jsx",
107
"target": "ES5",
118
"allowJs": true,
@@ -18,10 +15,6 @@
1815
"isolatedModules": true,
1916
"incremental": true
2017
},
21-
"include": [
22-
"src"
23-
],
24-
"exclude": [
25-
"node_modules"
26-
]
18+
"include": ["src"],
19+
"exclude": ["node_modules"]
2720
}

examples/react/optimistic-updates-ui/tsconfig.json

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22
"compilerOptions": {
33
"strict": true,
44
"esModuleInterop": true,
5-
"lib": [
6-
"dom",
7-
"es2015"
8-
],
5+
"lib": ["dom", "es2015"],
96
"jsx": "react-jsx",
107
"target": "ES5",
118
"allowJs": true,
@@ -18,10 +15,6 @@
1815
"isolatedModules": true,
1916
"incremental": true
2017
},
21-
"include": [
22-
"src"
23-
],
24-
"exclude": [
25-
"node_modules"
26-
]
18+
"include": ["src"],
19+
"exclude": ["node_modules"]
2720
}
Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
22
"compilerOptions": {
3-
"lib": [
4-
"dom",
5-
"dom.iterable",
6-
"esnext"
7-
],
3+
"lib": ["dom", "dom.iterable", "esnext"],
84
"allowJs": true,
95
"skipLibCheck": true,
106
"strict": true,
@@ -19,12 +15,6 @@
1915
"incremental": true,
2016
"target": "ES2017"
2117
},
22-
"include": [
23-
"next-env.d.ts",
24-
"**/*.ts",
25-
"**/*.tsx"
26-
],
27-
"exclude": [
28-
"node_modules"
29-
]
18+
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
19+
"exclude": ["node_modules"]
3020
}
Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
22
"compilerOptions": {
3-
"lib": [
4-
"dom",
5-
"dom.iterable",
6-
"esnext"
7-
],
3+
"lib": ["dom", "dom.iterable", "esnext"],
84
"allowJs": true,
95
"skipLibCheck": true,
106
"strict": true,
@@ -19,12 +15,6 @@
1915
"incremental": true,
2016
"target": "ES2017"
2117
},
22-
"include": [
23-
"next-env.d.ts",
24-
"**/*.ts",
25-
"**/*.tsx"
26-
],
27-
"exclude": [
28-
"node_modules"
29-
]
18+
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
19+
"exclude": ["node_modules"]
3020
}

0 commit comments

Comments
 (0)