How can I pass multiple source files to the TypeScript compiler?

后端 未结 6 1259
忘掉有多难
忘掉有多难 2020-12-14 05:54

TypeScript is designed for large-scale JavaScripty projects which typically consist of multiple internally produced files along with externally produced libraries. How does

6条回答
  •  天命终不由人
    2020-12-14 06:29

    dir *.ts /b /s > ts-files.txt
    tsc @ts-files.txt
    del ts-files.txt
    

    This will compile all *.ts files in working directory and its sub directories. If you don't want to include sub directories, just remove the /s part from the first line.

    Note that you can also add other arguments to the tsc line. Here is what I'm using now for one of my projects:

    tsc @ts-files.txt --out ..\output\deerchao.web.js --removeComments
    

提交回复
热议问题