Y
Hacker News
new
|
ask
|
show
|
jobs
by
timw4mail
679 days ago
My biggest gripe with Typescript is how much more difficult (Except perhaps in Bun/Deno) it is to set up compared to vanilla JS.
1 comments
SillyUsername
678 days ago
npm install ts-node
ts-node ./my-typescript.ts
doesn't seem difficult...
link
timw4mail
676 days ago
Until you have to deal with Jest for testing, or React.
link
MrJohz
678 days ago
Even easier than that:
npx tsx ./file.ts
link
ts-node ./my-typescript.ts
doesn't seem difficult...