1
0
mirror of https://github.com/robonen/tools.git synced 2026-03-20 10:54:44 +00:00

feat: update pnpm workspace and dependencies, migrate to tsdown for builds

This commit is contained in:
2026-02-14 03:49:10 +07:00
parent 07e6d3eadc
commit 3da393ed08
16 changed files with 1955 additions and 3012 deletions

11
web/vue/tsdown.config.ts Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig } from 'tsdown';
export default defineConfig({
entry: ['src/index.ts'],
format: ['esm', 'cjs'],
dts: true,
clean: true,
hash: false,
external: ['vue'],
noExternal: [/^@robonen\//],
});