This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

use tsup

+10
+10
tsup.config.ts
··· 1 + import { defineConfig } from "tsup"; 2 + 3 + export default defineConfig({ 4 + entry: ["src/index.ts"], 5 + outDir: "dist", 6 + target: "node18", 7 + format: ["cjs"], 8 + clean: true, 9 + sourcemap: true, 10 + });