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