mirror of
https://github.com/sern-handler/sern-community
synced 2026-06-06 01:16:57 +00:00
21 lines
392 B
TypeScript
21 lines
392 B
TypeScript
import { defineConfig } from "tsup";
|
|
|
|
export default defineConfig({
|
|
clean: true,
|
|
dts: false,
|
|
entry: ["src/**/*.ts", "!src/**/*.d.ts", "typings/"],
|
|
format: ["esm"],
|
|
minify: false,
|
|
silent: true,
|
|
skipNodeModulesBundle: true,
|
|
sourcemap: false,
|
|
target: "esnext",
|
|
bundle: false,
|
|
shims: false,
|
|
keepNames: true,
|
|
splitting: false,
|
|
define: {
|
|
this: "global",
|
|
},
|
|
});
|