UNPKG

gtfs-to-blocks

Version:

Generate CSV of transit departure times organized by block_id in GTFS.

12 lines (10 loc) 229 B
import { defineConfig } from 'tsup' export default defineConfig({ entry: ['src/index.ts', 'src/bin/gtfs-to-blocks.ts'], dts: true, clean: true, format: ['esm'], splitting: false, sourcemap: true, minify: false, })