chore: update to Node.JS v20

This commit is contained in:
Kim, Jimin 2024-02-29 00:07:36 +09:00
parent 12ed6cf0c2
commit 7079f92414
Signed by: pomp
GPG key ID: 77DAC7BB5CA8C7AA
11 changed files with 157 additions and 141 deletions

View file

@ -0,0 +1,9 @@
import { defineConfig } from "tsup"
export default defineConfig({
// clean: true, // this only removes file, not folders. Using rm -rf instead
target: "node20",
outDir: "build",
format: ["esm"],
entry: ["src/index.ts"],
})