|
|
|
|
|
by andrewcobby
1038 days ago
|
|
As some how is writing a compilter in TS, I agree it's not too bad. I started with Deno like the author but ended up switching to Bun which, despite some rough edges, I'm enjoying more than Deno and it's _very_ quick! (My main niggle with Bun is the test reporting, but it's getting the job done) For standard parser generator frontend, Ohm-js[1] is quite pleasant. I wouldn't recommend anyone reviews the offical tsc compiler, it's huuuge - instead there's mini-typescript[2] (in particular the centi-typescript branch[3]) which does a nice job illustrating how tsc is working. [1] https://ohmjs.org/
[2] https://github.com/sandersn/mini-typescript/
[3] https://github.com/sandersn/mini-typescript/tree/centi-types... Looking forward to GC an DOM access in WASM. |
|