johnfn / ts2gd

💥 Compile TypeScript to GDScript for Godot
200 stars 14 forks source link

report tsc errors on ts2gd cli #83

Open ksjogo opened 2 years ago

ksjogo commented 2 years ago

It seems that we currently don't bubble up ts errors. The user can check with tsc --noEmit or in editor, but might be good, to report these.

johnfn commented 2 years ago

This is the dream. Once we do this, we could start thinking about making ts2gd a full fledged LSP with IDE support... 🤩

Then again, how would we pass-through all the other stuff in TS, like the auto-complete suggestions, auto-imports, etc? That seems complicated...