TSV
TSV

Reputation: 7641

How can I use typescript in Aptana Studio?

I want to use typescript in ROR project, Aptana Studio 3.

Searched over the web for a plugin or a guide, but have found the only suggestion - add custom file type - ".ts", associate this file type with JavaScript editor and switch of errors.

Does anybody use TypeScript in Aptana Studio?

Upvotes: 0

Views: 2482

Answers (3)

vusan
vusan

Reputation: 5331

For full ts support there is typescript plugin for vim and emacs. As aptana also has its own terminal tab, we can use them on aptana tab. enter image description here

Upvotes: 1

vusan
vusan

Reputation: 5331

For those who used Standalone Version instead of Eclipse Plug-in Version, there is no typescript support. Aptana is not listed on the typescript editor support list.
Associating javascript editor with ts file type(step shown below) is less than perfect as it may sometime makes difficult to code due to inappropriate color highlight, but it will definitely work.

Preferences -> Content Type -> Javascript -> add *.ts

Upvotes: 2

basarat
basarat

Reputation: 276235

Does anybody use TypeScript in Aptana Studio?

Since its based on eclipse just use https://github.com/palantir/eclipse-typescript

Upvotes: 3

Related Questions