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 ..outputdeerchao.web.js --removeComments
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…