Remix.run Logo
paulddraper 10 months ago

Enums and namespaces are the only runtime features of TypeScript.

So, yes, you can't just strip types, but it's close.

EE84M3i 10 months ago | parent [-]

Is there a comprehensive list of such incompatibilities documented somewhere?

judofyr 10 months ago | parent | next [-]

https://www.typescriptlang.org/tsconfig/#isolatedModules

paulddraper 10 months ago | parent [-]

That's not the same.

That guarantees that the types do not determine the output (e.g. no const enums), not that you can "strip" types to get the same output.

paulddraper 10 months ago | parent | prev [-]

Not that I'm aware of.

Decorators would be another example. (Though they have always been marked experimental.)

And of course JSX, but that's not a TypeScript invention.