I'm currently quite early stage on the frontend work for my project, at a point where it wouldn't be too much hassle to convert to typescript although it would be some.
My backend is c++ and I use some Rust for tools where they have a better library than c++ (rare), so i'm not averse to strongly typed languages, but those languages were built with types from the ground up.
I see a lot of debate on this topic and a common reason given for using typescript is it helps working in a large team, I am working solo so this isn't a benefit for me.
It seems like the whole web scene is moving towards typescript but my gut is screaming no, there's just something off about it to me, it feels like a never ending afterthought, strapping on types to eternity.
Is it unnecessary overhead for minimal returns, or am I missing something?
seems like you already made up your mind, so why bother?
TypeScript is helpful (or at least meant to be) for teams as it aims to block the cleverness of its individual contributors. Especially people only familiar with dynamic type systems are rather fighting a static type checker at first and "it's not helping them". A "strong" type checker should enforce everyone to write stuff in a simpler form and that gets in the way of productivity for some people.
If you can maintain your mindset and write your code in a simple form that could easily satisfy a type checker (coming from rust), then why bother with additional tooling if it won't provide more value to you? Or to phrase it differently: if you can maintain a strong mindset with confidence, bringing in additional tooling for that project later on, when it will be become plausible, won't be that hard. But if you doubt your mindset, it might be a helpful choice to let a type checker look over your shoulder from the beginning.