fix(): remove tsconfig paths in nodemon, remove prefixes

This commit is contained in:
Kamil Myśliwiec
2019-04-21 14:59:06 +02:00
parent 7cb6fe0cf6
commit 30cc388d31
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -7,7 +7,7 @@
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "concurrently --names \"NODEMON,TSC\" --handle-input \"wait-on dist/main.js && nodemon\" \"tsc -w -p tsconfig.build.json\" ",
"start:dev": "concurrently \"wait-on dist/main.js && nodemon\" \"tsc -w -p tsconfig.build.json\" ",
"start:debug": "nodemon --config nodemon-debug.json",
"prestart:prod": "rimraf dist && npm run build",
"start:prod": "node dist/main.js",