Live data from Hacker News

Show HN: TypeNix – full typing for Nix language by mapping to the TS AST

github.com

1–3 of 3 posts

Re: Show HN: TypeNix – full typing for Nix language by mapping to the TS AST

#2
I'm the author, you may find interesting:

1. Instead of building a new checker, TypeNix maps Nix's AST directly to TypeScript's AST. The standard TS binder, type checker and LSP work almost unchanged – they never know they’re looking at Nix

2. TypeNix on all 42K nixpkgs files in 13 seconds locally. Fixed-point patterns (makeExtensible, finalAttrs) typed via class transform with `this` binding.