10 lines
215 B
TypeScript
10 lines
215 B
TypeScript
import { defineConfig } from "tsup";
|
|
|
|
export default defineConfig({
|
|
format: [ "cjs", "esm" ],
|
|
entry: ["./src/index.ts"],
|
|
dts: true,
|
|
shims: true,
|
|
skipNodeModulesBundle: true,
|
|
clean: true,
|
|
}); |