How to force typescript watcher to compile all .ts files without typing into those files? -
i'm using typescript watcher compile .ts file in pycharm. works every time edit .ts files. when clone project github on new machine, project contains .ts files , need type in space in each .ts files , save tell typescript watcher compile. extremely annoying when have tons of .ts files.
is there way force typescript watcher compile .ts files without making changes files?
according documentation of typescript watcher, can compile files using following command:
tscwatch build <rootpath> <outputpath> [options] you can read documentation configuration options , more details.
by way, should take note typescript watcher isn't being maintained anymore. suggest using basarat's grunt-ts in active development.
Comments
Post a Comment