Skip to content

Commit 3d34f44

Browse files
committed
Update json files per eslint configuration
1 parent 5244ecd commit 3d34f44

File tree

42 files changed

+679
-823
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+679
-823
lines changed

apps/landing/tsconfig.json

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{
22
"compilerOptions": {
33
"target": "ES2017",
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,
@@ -23,9 +19,7 @@
2319
}
2420
],
2521
"paths": {
26-
"@/*": [
27-
"./src/*"
28-
]
22+
"@/*": ["./src/*"]
2923
}
3024
},
3125
"include": [
@@ -35,7 +29,5 @@
3529
".next/types/**/*.ts",
3630
"df/*.d.ts"
3731
],
38-
"exclude": [
39-
"node_modules"
40-
]
41-
}
32+
"exclude": ["node_modules"]
33+
}

apps/next/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
"@types/react": "^19",
2323
"@types/react-dom": "^19"
2424
}
25-
}
25+
}

apps/next/tsconfig.json

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{
22
"compilerOptions": {
33
"target": "ES2017",
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,
@@ -23,9 +19,7 @@
2319
}
2420
],
2521
"paths": {
26-
"@/*": [
27-
"./src/*"
28-
]
22+
"@/*": ["./src/*"]
2923
}
3024
},
3125
"include": [
@@ -35,7 +29,5 @@
3529
".next/types/**/*.ts",
3630
"df/*.d.ts"
3731
],
38-
"exclude": [
39-
"node_modules"
40-
]
41-
}
32+
"exclude": ["node_modules"]
33+
}

apps/rsbuild/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
"@rsbuild/plugin-react": "^1.4.0",
2121
"@devup-ui/rsbuild-plugin": "workspace:*"
2222
}
23-
}
23+
}

apps/vite-lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424
"@types/node": "^24",
2525
"@types/react": "^19"
2626
}
27-
}
27+
}

apps/vite-lib/tsconfig.json

Lines changed: 5 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{
22
"compilerOptions": {
33
"target": "ES2017",
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,
@@ -18,17 +14,9 @@
1814
"jsx": "preserve",
1915
"incremental": true,
2016
"paths": {
21-
"@/*": [
22-
"./src/*"
23-
]
17+
"@/*": ["./src/*"]
2418
}
2519
},
26-
"include": [
27-
"**/*.ts",
28-
"**/*.tsx",
29-
"df/*.d.ts"
30-
],
31-
"exclude": [
32-
"node_modules"
33-
]
34-
}
20+
"include": ["**/*.ts", "**/*.tsx", "df/*.d.ts"],
21+
"exclude": ["node_modules"]
22+
}

apps/vite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424
"@types/react": "^19",
2525
"@types/react-dom": "^19"
2626
}
27-
}
27+
}

apps/vite/tsconfig.json

Lines changed: 5 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{
22
"compilerOptions": {
33
"target": "ES2017",
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,
@@ -18,17 +14,9 @@
1814
"jsx": "preserve",
1915
"incremental": true,
2016
"paths": {
21-
"@/*": [
22-
"./src/*"
23-
]
17+
"@/*": ["./src/*"]
2418
}
2519
},
26-
"include": [
27-
"**/*.ts",
28-
"**/*.tsx",
29-
"df/*.d.ts"
30-
],
31-
"exclude": [
32-
"node_modules"
33-
]
34-
}
20+
"include": ["**/*.ts", "**/*.tsx", "df/*.d.ts"],
21+
"exclude": ["node_modules"]
22+
}

benchmark/next-chakra-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424
"@types/react-dom": "^19",
2525
"typescript": "^5"
2626
}
27-
}
27+
}
Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{
22
"compilerOptions": {
33
"target": "ES2017",
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,
@@ -23,9 +19,7 @@
2319
}
2420
],
2521
"paths": {
26-
"@/*": [
27-
"./src/*"
28-
]
22+
"@/*": ["./src/*"]
2923
}
3024
},
3125
"include": [
@@ -35,7 +29,5 @@
3529
".next/types/**/*.ts",
3630
"df/*.d.ts"
3731
],
38-
"exclude": [
39-
"node_modules"
40-
]
41-
}
32+
"exclude": ["node_modules"]
33+
}

0 commit comments

Comments
 (0)