DEV Community

Discussion on: Is babel still relevant for TypeScript projects ?

Collapse
 
mindplay profile image
Rasmus Schultz • Edited

Honestly, I view tsc as a "proof of concept" compiler at best - incapable of even linking an npm package, it has honestly never been of any real practical use on real projects in the real world.

It's useful for the language service and for type-checking with --noEmit and not much else.

It's kind of sad, really. The compiler itself is like a frustrating teaser - just enough to get someone trying out TS and get them interested, but not enough for them to actually do anything really useful at all.

It gets to the point of poignant, really - the fact that the Playground allows you to import from npm packages, but not actually run the code... I don't know whether to laugh or cry.

They ought to either retire it or at least add basic support for linking dependencies. 😕