VMware Cloud Community
fede071
Contributor
Contributor

TypeScript Support

My company needs a cross-platform installer for multiple applications written in TypeScript. Is TypeScript among the languages supported by InstallBuilder installers? I could not find a complete list of the supported languages.

Thank you in advance

0 Kudos
4 Replies
scott28tt
VMware Employee
VMware Employee

There is an area for InstallBuilder, a moderator should move your thread there now I have reported it.

 


-------------------------------------------------------------------------------------------------------------------------------------------------------------

Although I am a VMware employee I contribute to VMware Communities voluntarily (ie. not in any official capacity)
VMware Training & Certification blog
fede071
Contributor
Contributor

Sorry and thank you for pointing that out!

0 Kudos
michieldhont_
Hot Shot
Hot Shot

Hi @fede071,

With InstallBuilder you can pack and unpack any type of application and run any commands during the installation using the <runProgram> action. If you need to run a script written in typescript you would also need to pack an interpreter:

<runProgram>
    <program>ts-node</program>
    <programArguments>typescript-file.ts</programArguments>
    <workingDirectory>${installdir}/bin</workingDirectory>
</runProgram>

 

Would that work for you?

Regards,

Michiel

fede071
Contributor
Contributor

Thank you @michieldhont_ 

I think that is going to work for us!

0 Kudos