How to prevent typescript from stripping unassigned static class fields
If I use the following javascript code:
tsc –watch high CPU on linux
I’m working on a small application, consisting of 3 services each under 100 Typescript files. I’m using tsc-watch
to automatically restart these services, which runs tsc --watch
under the hood.
Build all projects/workspaces with tsc
I’m re-organizing several unrelated typescript projects into a mono-repo structure. Currently I’m able to compile each one individually just fine with tsc
. I would like to have something like a “build-all” script in the base package.json
. Here’s an example of my project structure: