1 files changed, 3 insertions, 1 deletions
diff --git a/gateway/package.json b/gateway/package.json
index 6b9e27d6..f5e66a9a 100644
--- a/gateway/package.json
+++ b/gateway/package.json
@@ -4,8 +4,9 @@
"description": "",
"main": "dist/index.js",
"scripts": {
+ "prepare": "ts-patch install -s",
"test": "echo \"Error: no test specified\" && exit 1",
- "start": "npm run build && node -r ./scripts/tsconfig-paths-bootstrap.js dist/start.js",
+ "start": "npm run build && node dist/start.js",
"build": "npx tsc -b .",
"dev": "tsnd --respawn src/start.ts"
},
@@ -23,6 +24,7 @@
"@types/uuid": "^8.3.0",
"@types/ws": "^7.4.0",
"ts-node-dev": "^1.1.6",
+ "ts-patch": "^1.4.4",
"typescript": "^4.2.3"
},
"dependencies": {
|