Skip to content

Commit 1113edf

Browse files
chore: Update dependencies (#414)
* chore: update dependencies and fix tsgo 7.0 typecheck errors - Remove deprecated moduleResolution "Node" (node10) from browserslist-config and stylelint-configs - Add explicit "types" for node and jest where needed (TS6 no longer auto-discovers @types) - Add ignoreDeprecations for tsup-lib (tsup internally sets deprecated baseUrl) - Update @typescript/native-preview, turbo, and other dependencies Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * chore: add new changeset for dependency updates --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 202681f commit 1113edf

47 files changed

Lines changed: 700 additions & 828 deletions

Some content is hidden

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

.changeset/fast-cooks-hide.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
"@workleap/browserslist-config": patch
3+
"@workleap/stylelint-configs": patch
4+
"@workleap/postcss-configs": patch
5+
"@workleap/rsbuild-configs": patch
6+
"@workleap/webpack-configs": patch
7+
"@workleap/eslint-configs": patch
8+
"@workleap/rslib-configs": patch
9+
"@workleap/tsup-configs": patch
10+
"@workleap/swc-configs": patch
11+
---
12+
13+
Update dependencies

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"@eslint/js": "9.39.2",
5555
"@types/node": "25.5.0",
5656
"@typescript-eslint/parser": "8.58.0",
57-
"@typescript/native-preview": "7.0.0-dev.20260303.1",
57+
"@typescript/native-preview": "7.0.0-dev.20260331.1",
5858
"@workleap/eslint-configs": "workspace:*",
5959
"@workleap/typescript-configs": "workspace:*",
6060
"agent-browser": "0.23.4",
@@ -64,7 +64,7 @@
6464
"prettier": "3.8.1",
6565
"retypeapp": "4.4.0",
6666
"syncpack": "14.3.0",
67-
"turbo": "2.9.1",
67+
"turbo": "2.9.3",
6868
"typescript": "6.0.2",
6969
"typescript-eslint": "8.58.0"
7070
},

packages/browserslist-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"devDependencies": {
3636
"@eslint/js": "9.39.2",
3737
"@typescript-eslint/parser": "8.58.0",
38-
"@typescript/native-preview": "7.0.0-dev.20260303.1",
38+
"@typescript/native-preview": "7.0.0-dev.20260331.1",
3939
"@workleap/eslint-configs": "workspace:*",
4040
"eslint": "9.39.2",
4141
"rimraf": "6.1.3",

packages/browserslist-config/tsconfig.build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://json.schemastore.org/tsconfig",
33
"compilerOptions": {
44
"outDir": "dist",
5-
"rootDir": "./src",
5+
"rootDir": "src",
66

77
"ignoreDeprecations": "6.0",
88
"moduleResolution": "Node",

packages/browserslist-config/tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
"compilerOptions": {
44
"incremental": true,
55
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json",
6-
"moduleResolution": "Node",
7-
"module": "CommonJS"
6+
"types": ["node"]
87
},
98
"exclude": ["dist", "node_modules"]
109
}

packages/eslint-configs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"@types/eslint-plugin-jsx-a11y": "6.10.1",
7878
"@types/estree": "1.0.8",
7979
"@types/node": "25.5.0",
80-
"@typescript/native-preview": "7.0.0-dev.20260303.1",
80+
"@typescript/native-preview": "7.0.0-dev.20260331.1",
8181
"@workleap/typescript-configs": "workspace:*",
8282
"eslint": "9.39.2",
8383
"typescript": "6.0.2",

packages/eslint-configs/tsconfig.build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "@workleap/typescript-configs/library.json",
33
"compilerOptions": {
4-
"rootDir": "./src",
4+
"rootDir": "src",
55
"types": ["node"]
66
},
77
"include": ["src"],

packages/eslint-configs/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"compilerOptions": {
44
"incremental": true,
55
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json",
6+
"types": ["node"]
67
},
78
"exclude": ["dist", "node_modules"]
89
}

packages/postcss-configs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"@rslib/core": "0.20.2",
4646
"@types/node": "25.5.0",
4747
"@typescript-eslint/parser": "8.58.0",
48-
"@typescript/native-preview": "7.0.0-dev.20260303.1",
48+
"@typescript/native-preview": "7.0.0-dev.20260331.1",
4949
"@workleap/eslint-configs": "workspace:*",
5050
"@workleap/rslib-configs": "workspace:*",
5151
"@workleap/typescript-configs": "workspace:*",

packages/postcss-configs/tsconfig.build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "@workleap/typescript-configs/library.json",
33
"compilerOptions": {
4-
"rootDir": "./src"
4+
"rootDir": "src"
55
},
66
"include": ["src"],
77
"exclude": ["dist", "node_modules"]

0 commit comments

Comments
 (0)