clean up dev script

This commit is contained in:
MapleLeaf
2022-01-03 11:58:14 -06:00
parent 754acc87a0
commit 35a63ad551
3 changed files with 124 additions and 63 deletions

View File

@@ -0,0 +1,8 @@
import { defineConfig } from "tsup"
export default defineConfig({
entry: ["./src/main.tsx"],
target: "node16",
format: ["esm"],
sourcemap: true,
})