How to run node application developed using ts-node on Azure app service

Viewed 1321

Most of the documentation for a node application on azure app service is around running using iisnode module handler which uses app.js or server.js like files.

What if we want to run the same application which we are developing all along using typescript and running using ts-node?

Possibly one option is to compile typescript files into javascript files, but that will overhead the files created, which I don't want.

1 Answers

What if we want to run the same application which we are developing all along using typescript and running using ts-node?

Don't run production code using ts-node. Transpile to .js and run js files.

Related