hello,
I constantly get build error that it can’t find module dist/server.js which is build by tsc. I don’t get any error from tsc. This error appeared out of nowhere. Locally it works totally fine.
that’s part of my package.json
:
"main": "dist/server.js",
"scripts": {
"build:digitalocean": "npm install --production=false && npm run build && npm ci",
"start": "npm run build && node dist/server.js",
"build": "tsc",
"postinstall": "tsc",
"dev": "NODE_ENV=development node dist/server.js"
},
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
I found the answer. For reference in the future: there was a second folder which contained a tsconfig. As such tsc changed the path to /dist/src/server.js and /dist/moduleWithTSconfig/app.js