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