Within my extensive application that is constructed using webpack, there are numerous entry points that are generated dynamically. Each entry point requires specific target files to be created during the build process.
I have already realized that when building, ts-loader must be utilized with just the transpileOnly option enabled. However, I am facing difficulties on how to use tsc to verify for any type errors.
My initial idea was to simply run tsc --noEmit ./**/*.ts
after running
tslint --config tslint.json ./**/*.ts
in my npm lint script. Unfortunately, this approach does not work because tsc does not support wildcards. There must be a straightforward solution out there, but I have yet to discover it.