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