* fix: live tsconfig and tsup config * fix: lock file updates * feat: adding build process to constants and types packages * chore: coderabbit suggestions
10 lines
180 B
TypeScript
10 lines
180 B
TypeScript
import { defineConfig } from "tsup";
|
|
|
|
export default defineConfig({
|
|
entry: ["src/index.ts"],
|
|
outDir: "dist",
|
|
format: ["esm"],
|
|
dts: true,
|
|
clean: true,
|
|
minify: true,
|
|
});
|