UNPKG
gtfs-to-blocks
Version:
latest (0.3.11)
0.3.11
0.3.10
0.3.9
0.3.8
0.3.7
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
Generate CSV of transit departure times organized by block_id in GTFS.
gtfs-to-blocks
/
tsup.config.ts
12 lines
(10 loc)
•
229 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
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
, })