Skip to content

Commit 037e540

Browse files
committed
chore: upgrade deps, setup tsgo
1 parent 799f419 commit 037e540

File tree

10 files changed

+1468
-1664
lines changed

10 files changed

+1468
-1664
lines changed

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"postinstall": "simple-git-hooks",
2424
"format": "prettier --write --cache .",
2525
"lint": "eslint --cache .",
26-
"typecheck": "tsc -p scripts --noEmit && tsc -p playground --noEmit",
26+
"typecheck": "tsgo -p scripts --noEmit && tsgo -p playground --noEmit",
2727
"test": "pnpm test-serve && pnpm test-build",
2828
"test-serve": "vitest run -c vitest.config.e2e.ts",
2929
"test-build": "VITE_TEST_BUILD=1 vitest run -c vitest.config.e2e.ts",
@@ -42,25 +42,26 @@
4242
"@types/convert-source-map": "^2.0.3",
4343
"@types/fs-extra": "^11.0.4",
4444
"@types/node": "^24.10.1",
45+
"@typescript/native-preview": "7.0.0-dev.20251203.1",
4546
"@vitejs/release-scripts": "^1.6.0",
4647
"eslint": "^9.39.1",
4748
"eslint-import-resolver-typescript": "^4.4.4",
4849
"eslint-plugin-import-x": "^4.16.1",
4950
"eslint-plugin-n": "^17.23.1",
5051
"eslint-plugin-regexp": "^2.10.0",
51-
"execa": "^9.6.0",
52+
"execa": "^9.6.1",
5253
"fs-extra": "^11.3.2",
5354
"lint-staged": "^16.2.7",
5455
"picocolors": "^1.1.1",
5556
"playwright-chromium": "^1.57.0",
56-
"prettier": "3.6.2",
57+
"prettier": "3.7.4",
5758
"rollup": "^4.53.3",
5859
"simple-git-hooks": "^2.13.1",
59-
"tsx": "^4.20.6",
60+
"tsx": "^4.21.0",
6061
"typescript": "^5.9.3",
61-
"typescript-eslint": "^8.48.0",
62+
"typescript-eslint": "^8.48.1",
6263
"vite": "catalog:",
63-
"vitest": "^4.0.14",
64+
"vitest": "^4.0.15",
6465
"vue": "catalog:"
6566
},
6667
"simple-git-hooks": {
@@ -80,5 +81,5 @@
8081
"eslint --cache --fix"
8182
]
8283
},
83-
"packageManager": "pnpm@10.23.0"
84+
"packageManager": "pnpm@10.24.0"
8485
}

packages/plugin-vue-jsx/package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,20 @@
3838
"@babel/core": "^7.28.5",
3939
"@babel/plugin-syntax-typescript": "^7.27.1",
4040
"@babel/plugin-transform-typescript": "^7.28.5",
41-
"@rolldown/pluginutils": "^1.0.0-beta.51",
41+
"@rolldown/pluginutils": "^1.0.0-beta.53",
4242
"@vue/babel-plugin-jsx": "^2.0.1"
4343
},
4444
"devDependencies": {
45-
"tsdown": "^0.16.7",
45+
"tsdown": "^0.17.0-beta.6",
4646
"vite": "catalog:"
4747
},
4848
"peerDependencies": {
4949
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0",
5050
"vue": "^3.0.0"
51+
},
52+
"tsdown": {
53+
"dts": {
54+
"tsgo": true
55+
}
5156
}
5257
}

packages/plugin-vue-jsx/tsdown.config.ts

Lines changed: 0 additions & 6 deletions
This file was deleted.

packages/plugin-vue/package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,16 @@
4545
"rollup": "^4.53.3",
4646
"slash": "^5.1.0",
4747
"source-map-js": "^1.2.1",
48-
"tsdown": "^0.16.7",
48+
"tsdown": "^0.17.0-beta.6",
4949
"vite": "catalog:",
5050
"vue": "catalog:"
5151
},
5252
"dependencies": {
53-
"@rolldown/pluginutils": "1.0.0-beta.51"
53+
"@rolldown/pluginutils": "1.0.0-beta.53"
5454
},
5555
"tsdown": {
56-
"dts": true
56+
"dts": {
57+
"tsgo": true
58+
}
5759
}
5860
}

packages/plugin-vue/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
"noImplicitOverride": true,
1313
"noUnusedLocals": true,
1414
"esModuleInterop": true,
15-
"baseUrl": ".",
1615
"resolveJsonModule": true
1716
}
1817
}

playground/ssr-vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"@vitejs/plugin-vue-jsx": "workspace:*",
2626
"@vitejs/test-dep-import-type": "link:dep-import-type",
2727
"compression": "^1.8.1",
28-
"express": "^5.1.0",
28+
"express": "^5.2.1",
2929
"serve-static": "^2.2.0"
3030
}
3131
}

playground/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"target": "ES2023",
66
"module": "ESNext",
77
"outDir": "dist",
8-
"baseUrl": ".",
98
"allowJs": true,
109
"esModuleInterop": true,
1110
"resolveJsonModule": true,

playground/vue-legacy/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"vue": "catalog:"
1414
},
1515
"devDependencies": {
16-
"@vitejs/plugin-vue": "workspace:*",
17-
"@vitejs/plugin-legacy": "^7.2.1"
16+
"@vitejs/plugin-legacy": "^7.2.1",
17+
"@vitejs/plugin-vue": "workspace:*"
1818
}
1919
}

0 commit comments

Comments
 (0)