develwoutacause’s avatardevelwoutacause’s Twitter Archive—№ 1,566

  1. #TypeScript 4.8 bringing parseInt support during type checking. // SomeNum used to be 'number'; now it's '100'. type SomeNum = "100" extends ${infer U extends number} ? U : never; Me, waiting to implement all my apps at compile-time: @typescript/1557806533693452290
    1. …in reply to @develwoutacause
      #TeribleIdeas: A transpiler which converts #WebAssembly byte-code into #TypeScript type checking code which evaluates the program at compile time.