Deploying an Express app in TypeScript that has a successful build and start:
"scripts": {
"build": "tsc",
"dev": "ts-node ./src/index.ts",
"start": "node ./dist/src/index.js"
},
Everything builds and starts in the logs without error but the deploy never wraps up. yarn; yarn build
is my build command with yarn start
to follow.