• mac webstorm自动编译typescript配置


    1、安装typescrip

    npm install -g typescript    

                                                                                                  

    2、在typescript文件所在目录中打开terminal输入tsc --init安装tsconfig.js

    tsc --init
    

    3、编辑tscongfig.json,修改outDir的参数,既默认ts转换成js后的输出目录

     4、点击webStorm->Preferences到设置页面

    5、点击tools->File Watchers->左下角的+号、选择custom

     6、输入如下信息

    Name:TypeScript
    File Type:TypeScript
    Scope:All Places
    Program:/usr/local/lib/node_modules/typescript/bin/tsc(既安装typescript的路径下的tyc文件)
    Arguments:--sourcemap --target "ES5"
    Output paths to refresh:$FileNameWithoutExtension$.js:$FileNameWithoutExtension$.js.map
    WOrking directory:$FileDir$

     点击ok->Apply完成。

    再次编辑ts文件就会自动编译为js了

  • 相关阅读:
    HDU 1698 Just a Hook (区间更新+延迟标记)
    HDU 1754 I Hate It 线段树
    HDU 1847 Good Luck in CET-4 Everybody! (sg函数)
    博弈汇总
    Codeforces cf 713A Sonya and Queries
    hihoCoder 1082 : 然而沼跃鱼早就看穿了一切
    hihoCoder 1298 : 数论五·欧拉函数
    hdu 5821 Ball
    hdu 5818 Joint Stacks(栈的模拟)
    hdu 5802 Windows 10
  • 原文地址:https://www.cnblogs.com/directiones/p/11976617.html
Copyright © 2020-2023  润新知