I am currently trying to build my ts files into a single ts files. The issue I\'m getting is that my code below isn\'t doing what I thought it would. I used sourceRoot to at
The rootDir is just used to control the output directory structure.
The output directory structure will be similar to your rootDir's directory.
U can use the glob-like file patterns to restrict your source directories:
* matches zero or more characters (excluding directory separators)
? matches any one character (excluding directory separators)
**/ recursively matches any subdirectory