this post was submitted on 10 Sep 2023
75 points (100.0% liked)

Programming

13345 readers
1 users here now

All things programming and coding related. Subcommunity of Technology.


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] fushuan@lemm.ee 3 points 1 year ago

build steps make sense for apps, they make much less sense for libraries.

This might be true, but it's not about build steps, it's about having detailed iformation of the types of the objects that the library is serving. not knowing the typing of the functions a library is serving is... poor. Maybe typescript is too strict and having something like type hinting like python has would be enough since linters pick up the hints from the libraries, but doing just JS only fuck the people that use the library.