Looking to utilize a task runner such as Grunt or Gulp to compile TS to JS files in various locations within the project folder. The goal is to ensure that the outputted JS files are placed in the same directory where the project will look for them alongside the TS files.
For instance:
lib/**/*.ts
workspace/**/*.ts
Despite experimenting with both Grunt and Gulp, it appears that they do not support recursively searching an entire project folder for any .ts files, which is the main challenge faced here.