ama
ama copied to clipboard
Why don't you write your stuff in TypeScript?
trafficstars
This is different from ones already answered at sindresorhus/ama/issues?q=typescript
Writing modules in TS from ground up gives you lot's of benefits like automatic documentation generation instead of having to manually write the API in README.md, also declaration files (*.d.ts) which yield rich experience when people use your modules.
As an example, text-store is one of my packages using TS.
There are at least a couple packages that I know of written in TypeScript:
Related: #15, #439