Skip to content

Commit 5f69e83

Browse files
committed
chore: move base configs from ws root to '@workspace/configs'
1 parent 0a06cf5 commit 5f69e83

File tree

41 files changed

+104
-31
lines changed

Some content is hidden

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

41 files changed

+104
-31
lines changed

.vscode/settings.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@
6161
},
6262
"files.exclude": {
6363
"**/.turbo": true,
64-
".npmignore": true,
6564
"*.bundled_*.mjs": true
6665
},
6766
"typescript.preferences.importModuleSpecifier": "non-relative",

package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
"@types/react": "^19.0.1",
6363
"@types/react-dom": "^19.0.2",
6464
"@vitest/ui": "^2.1.8",
65+
"@workspace/configs": "workspace:*",
6566
"@workspace/eslint-deps": "workspace:*",
6667
"concurrently": "^9.1.0",
6768
"cspell": "^8.16.1",
@@ -96,19 +97,19 @@
9697
},
9798
"pnpm": {
9899
"overrides": {
100+
"@types/react": "^19.0.1",
101+
"@types/react-dom": "^19.0.2",
99102
"array-flatten": "npm:@nolyfill/array-flatten@^1.0.42",
103+
"cross-spawn": "7.0.6",
100104
"is-core-module": "npm:@nolyfill/is-core-module@^1.0.39",
101105
"isarray": "npm:@nolyfill/isarray@^1.0.29",
106+
"react": "^19.0.0",
107+
"react-dom": "^19.0.0",
102108
"safe-buffer": "npm:@nolyfill/safe-buffer@^1.0.41",
103109
"safer-buffer": "npm:@nolyfill/safer-buffer@^1.0.41",
104110
"side-channel": "npm:@nolyfill/side-channel@^1.0.29",
105-
"typedarray": "npm:@nolyfill/typedarray@^1.0.29",
106-
"@types/react": "^19.0.1",
107-
"@types/react-dom": "^19.0.2",
108-
"cross-spawn": "7.0.6",
109-
"react": "^19.0.0",
110-
"react-dom": "^19.0.0",
111111
"ts-api-utils": "^2.0.0",
112+
"typedarray": "npm:@nolyfill/typedarray@^1.0.29",
112113
"typescript": "^5.7.2"
113114
}
114115
}

packages/core/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
"ts-pattern": "^5.5.0"
5858
},
5959
"devDependencies": {
60+
"@workspace/configs": "workspace:*",
6061
"tsup": "^8.3.5"
6162
}
6263
}

packages/core/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extends": [
3-
"../../tsconfig.base.json",
3+
"@workspace/configs/tsconfig.base.json",
44
"@tsconfig/node22/tsconfig.json"
55
],
66
"compilerOptions": {

packages/core/typedoc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extends": [
3-
"../../typedoc.base.json"
3+
"@workspace/configs/typedoc.base.json"
44
],
55
"name": "@eslint-react/core",
66
"entryPoints": [

packages/plugins/eslint-plugin-react-debug/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
"devDependencies": {
6767
"@types/react": "^19.0.1",
6868
"@types/react-dom": "^19.0.2",
69+
"@workspace/configs": "workspace:*",
6970
"tsup": "^8.3.5"
7071
},
7172
"peerDependencies": {

packages/plugins/eslint-plugin-react-debug/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extends": [
3-
"../../../tsconfig.base.json",
3+
"@workspace/configs/tsconfig.base.json",
44
"@tsconfig/node22/tsconfig.json"
55
],
66
"compilerOptions": {

packages/plugins/eslint-plugin-react-dom/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
"devDependencies": {
6666
"@types/react": "^19.0.1",
6767
"@types/react-dom": "^19.0.2",
68+
"@workspace/configs": "workspace:*",
6869
"string-ts": "^2.2.0",
6970
"tsup": "^8.3.5"
7071
},

packages/plugins/eslint-plugin-react-dom/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extends": [
3-
"../../../tsconfig.base.json",
3+
"@workspace/configs/tsconfig.base.json",
44
"@tsconfig/node22/tsconfig.json"
55
],
66
"compilerOptions": {

packages/plugins/eslint-plugin-react-hooks-extra/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
"devDependencies": {
6767
"@types/react": "^19.0.1",
6868
"@types/react-dom": "^19.0.2",
69+
"@workspace/configs": "workspace:*",
6970
"string-ts": "^2.2.0",
7071
"tsup": "^8.3.5"
7172
},

0 commit comments

Comments
 (0)