You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 1 година
123456789
  1. import { defineConfig } from "tsup";
  2. export default defineConfig({
  3. name: "node",
  4. entry: ["./src/index.ts"],
  5. format: ["esm"],
  6. clean: true,
  7. dts: true
  8. });