Peter
Peter

Reputation: 29867

How to add ReactJS support with .tsx and .jsx syntax highlighting / code complete to IntelliJ Idea 14

It seems the newer versions of Intelli-J Idea support this natively. Any way to add support for version 14? I couldn't find a plugin.

Upvotes: 3

Views: 1383

Answers (1)

CrazyCoder
CrazyCoder

Reputation: 402443

I'm afraid, it's not possible. IntelliJ platform has evolved a lot since version 14 and many new plug-in features depend on the new platform features and APIs, therefore backporting this functionality to the older IDE versions is not an easy task and is not worth it.

For the basic syntax highlighting you could try TextMate Bundles support feature. There is a good answer explaining how to make it work for Ruby, but for other files types it would be similar. Note that this will not provide the code completion.

If you are on a tight budget and cannot afford upgrading to the latest version, you may consider using WebStorm instead.

Upvotes: 1

Related Questions