fix path of index.js when starting in production

This commit is contained in:
Ulf Gebhardt 2022-02-22 18:22:44 +01:00
parent ffb0eb8788
commit a4b33a8c13
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -10,7 +10,7 @@
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"start": "node build/index.js",
"start": "node build/src/index.js",
"dev": "nodemon -w src --ext ts --exec ts-node src/index.ts",
"lint": "eslint . --ext .js,.ts",
"test": "TZ=UTC NODE_ENV=development jest --runInBand --coverage --forceExit --detectOpenHandles"