1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

replace tsdv with tsup

This commit is contained in:
nshen121
2022-08-06 17:10:37 +08:00
parent 85eb1595d0
commit 85fcda36df
3 changed files with 13 additions and 9 deletions

10
tsup.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/index.ts'],
format: ['esm', 'cjs'],
splitting: false,
clean: true,
dts: true,
minify: false
});