PBandJ
PBandJ

Reputation: 2883

Sublime Typescript Undo Build Files

I accidentally clicked CTRL + B and it generated all JavaScript files and source map files from Typescript.

I was wondering if there is an easy way to undo this, as Sublime is constantly generating/updating the JS files whenever I update the Typescript files.

I am currently using Sublime 3 and Typescript with Angular 2 + Webpack.

Upvotes: 2

Views: 209

Answers (1)

Gerard Simpson
Gerard Simpson

Reputation: 2126

If you are using git for version control, and don't have any other untracked files added, you can run:

git clean -fd which will remove all untracked files

Upvotes: 1

Related Questions