1 Star 0 Fork 2

Tikkhun/flex-tools

forked from fisher/flex-tools 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
tsup.config.ts 618 Bytes
一键复制 编辑 原始数据 按行查看 历史
import { defineConfig } from 'tsup'
import copy from "esbuild-copy-files-plugin";
export default defineConfig({
entry: [
'src/**/*.ts'
],
format: ['esm','cjs'],
dts: true,
splitting: true,
sourcemap: false,
clean: true,
treeshake:true,
minify: true,
esbuildPlugins:[
// @ts-ignore
copy({
source:['package.json','README.md','LICENSE'],
target:"dist/"
})
],
banner: {
js: `/**
*
* ---=== FlexTools ===---
* https://zhangfisher.github.com/flex-tools
*
* 一些实用工具函数
*
*/`}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/radiorz/flex-tools.git
git@gitee.com:radiorz/flex-tools.git
radiorz
flex-tools
flex-tools
master

搜索帮助