HackerTrans
トップ新着トレンドコメント過去質問紹介求人

jcbhmr

857 カルマ登録 3 年前
https://jcbhmr.com

投稿

Node.js platform/arch possible values

jcbhmr.com
3 ポイント·投稿者 jcbhmr·3 日前·0 コメント

HTTP API Design Guide

geemus.gitbooks.io
1 ポイント·投稿者 jcbhmr·6 日前·0 コメント

ArkType: The Parse-Don't-Validate Sequel I Didn't Know I Needed

cekrem.github.io
3 ポイント·投稿者 jcbhmr·27 日前·0 コメント

TypeScript checker and language service written in Rust

tsz.dev
8 ポイント·投稿者 jcbhmr·2 か月前·0 コメント

Crates.io Trusted Publishing

crates.io
1 ポイント·投稿者 jcbhmr·3 か月前·0 コメント

'"one" | "two" | string' autocomplete TypeScript trick

jcbhmr.com
3 ポイント·投稿者 jcbhmr·3 か月前·0 コメント

Chrome Platform Status

chromestatus.com
1 ポイント·投稿者 jcbhmr·3 か月前·0 コメント

Y Combinator's CEO says he ships 37,000 lines of AI code per day

fastcompany.com
14 ポイント·投稿者 jcbhmr·3 か月前·20 コメント

Proposal for adding a useful pipe operator to JavaScript

github.com
1 ポイント·投稿者 jcbhmr·3 か月前·0 コメント

Mitata: Benchmark tooling that loves you

github.com
2 ポイント·投稿者 jcbhmr·4 か月前·0 コメント

JavaScript's Trademark Problem (2025)

2ality.com
1 ポイント·投稿者 jcbhmr·4 か月前·0 コメント

The /ai 'Manifesto'

bydamo.la
1 ポイント·投稿者 jcbhmr·4 か月前·0 コメント

Gofumpt: A Stricter Gofmt

github.com
1 ポイント·投稿者 jcbhmr·5 か月前·0 コメント

XGo: = C * Go * Python * JavaScript and Scratch

xgo.dev
2 ポイント·投稿者 jcbhmr·6 か月前·0 コメント

: The Fenced Frame element

developer.mozilla.org
9 ポイント·投稿者 jcbhmr·6 か月前·0 コメント

Node.js platform/arch possible values

jcbhmr.com
1 ポイント·投稿者 jcbhmr·7 か月前·0 コメント

Deno Sandboxes

deno.com
4 ポイント·投稿者 jcbhmr·7 か月前·0 コメント

Possible platform/arch names in Deno.build and node:process

jcbhmr.com
1 ポイント·投稿者 jcbhmr·7 か月前·0 コメント

JSDoc types are not TypeScript types

jcbhmr.com
5 ポイント·投稿者 jcbhmr·7 か月前·0 コメント

Wizard Zines

wizardzines.com
3 ポイント·投稿者 jcbhmr·7 か月前·0 コメント

コメント

jcbhmr
·7 か月前·議論
JSDoc works great for buildless application setups! One downside is that if you publish a library to npm you still need a build step to generate .d.ts files from your JSDoc type annotations so that npm shows a "TS" badge on the npm package page. This also seems to apply to VSCode's intellisense which keeps trying to poke you to "try to install @types/jsdoc-typed-package to get type information". Other JS ecosystem tooling also doesn't seem to process JSDoc types at all such as jsdocs.io or tsdocs.dev. So for libraries we're stuck with .d.ts generation via "tsc --allowJs --checkJs --declaration ..." even if it's all JS.

npm displays packages with bundled TypeScript declarations https://github.blog/changelog/2020-12-16-npm-displays-packag...

JSDoc-typed node modules require special configuration in consumers to be useful https://github.com/microsoft/TypeScript/issues/19145