-
Notifications
You must be signed in to change notification settings - Fork 14
No compilation of typescript files after Cleaning / Rebuilding #238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Indeed, it should be implemented, I have started to do something but it's an hard task. |
There is a kind of workaround to get it implemented by adding an external Builder to your Eclipse project Configuration, which looks like this: The nasty thing about it, is that you have to hardcode the path to
|
Is there an eclipse variable reflecting the path to tsc and node? |
@ggruber4711 it already exist a typescript builder but it doesn't support clean and build all. I have started to implement itl but I had a lot of problem with performance and I had some limitation with tsserver which doesn't support the compile when file is not opened. I must just find time to retyry it. |
I noticed that compilation of *.ts files is basically done on save of a file and when you call "Run As => Compile Typescript" on the tsconfig.json file.
However I would like to have also an automatic build, after Eclipse is either
This are 2 typical situations faced by Java/Web developers when working in a mixed Java/Web/Javascript project containing both java and javascript files.
Is there somehow a solution for this requirement?
Thanks in advance!
The text was updated successfully, but these errors were encountered: