mirror of
https://github.com/gosticks/plane.git
synced 2025-10-16 12:45:33 +00:00
* feat: adding standard scripts for lint and format check * fix: update packages scripts * fix: adding tsup config to utils package * chore: updated build scripts in logger pacakge
10 lines
176 B
TypeScript
10 lines
176 B
TypeScript
import { defineConfig } from "tsup";
|
|
|
|
export default defineConfig({
|
|
entry: ["src/index.ts"],
|
|
format: ["esm", "cjs"],
|
|
dts: true,
|
|
clean: true,
|
|
external: ["react"],
|
|
});
|