Closed
Description
TypeScript added support for JSX:
microsoft/TypeScript#3203
Briefly, this adds support for HTML-like literals in code:
var foo = <div style="foo">blah</div>;
typescript-mode currently doesn't indent such literals properly, in contexts like this:
var foo = <div style="foo"
attr2="bar"> <- should indent matching "style"
<div>
<div> <- should indent due to opening tag above
...
Currently I use web-mode (which understands JSX) for typescript files, but that doesn't work with tide (which wants to work with typescript-mode, not web-mode).