vite-plugin-utools-plugin
Version:
19 lines (17 loc) • 379 B
text/typescript
import { defineConfig } from "tsup";
export default defineConfig(({ watch }) => {
return {
entry: [
"./src/index.ts"
],
outDir: "dist",
format: ['esm'],
dts: true,
clean: true,
skipNodeModulesBundle: true,
bundle: true,
tsconfig: "./tsconfig.json",
minify: !Boolean(watch),
sourcemap: Boolean(watch),
}
})