1/*
2 this is an example to compile ts file and then run app.js
3 you can modify according to your requirement
4 below is example of simple npm script compile and execute ts file
5*/
6"start": "nodemon --watch *.ts --exec 'tsc *.ts && node app.js'"