Conversation
|
|
@stevensJourney I believe you originally added the |
I still use the watch command to start up the service locally. But if there is an alternative to that I'd gladly use it. |
|
It looks like in theory That said, during testing I found that |
That should be fine then. I am not stressed about auto triggering a rebuild for file changes while running the service. 🙇 |
I do still use the watch command in my dev setup - it's quite convenient, but I'm happy to work around it. I think we already use |
Blocked until typescript 7.1.0 - see comments.
This upgrades to TypeScript 7.
Build times on my machine, running
tsc -b --cleanthentime tsc -b:The main changes appear to be from increasing the concurrency, but it does also have a reduction in overall CPU usage.
This also removes nodemon and ts-node, since ts-node is not directly compatible with typescript 7. Possible options:
pnpm run watchcommand (current PR state).node --watchfor restarting the process, along withtsc -b -win a separate tab.No changeset since this does not change the build output.
AI Usage
None.