タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

JavaScriptとTypeScriptとwebpackに関するefclのブックマーク (1)

  • Manual Typing is No Fun: Introducing TypeWiz!

    TypeWiz is a tool that helps you enrich your TypeScript code while saving your precious time by automating the task of adding types to your code. So for example, given the following code: function calculate(a, b) { return a + b; }calculate(5, 10);The output of TypeWiz would be: function calculate(a: number, b: number) { return a + b; }calculate(5, 10);(Note the addition of : number type annotation

    Manual Typing is No Fun: Introducing TypeWiz!
    efcl
    efcl 2018/03/01
    JavaScriptからTypeScriptに移行する際の型付けを補助するツール。 webpackやnode hookを使い変換したコードを実行し、実行時の関数の引数、返り値、変数へ実際に入った値から型を推測する。 その推測した型をTypeScriptのコードに対
  • 1