diff --git a/api/package.json b/api/package.json
index d2070850..7b2de011 100644
--- a/api/package.json
+++ b/api/package.json
@@ -8,7 +8,7 @@
"test": "jest",
"test:watch": "jest --watch",
"start": "npm run build && node dist/start",
- "build": "npx typescript -b .",
+ "build": "npx tsc -b .",
"build-docker": "tsc -p tsconfig-docker.json",
"dev": "tsnd --respawn src/start.ts"
},
diff --git a/bundle/package.json b/bundle/package.json
index 5ffd004c..1e6c95c5 100644
--- a/bundle/package.json
+++ b/bundle/package.json
@@ -6,7 +6,7 @@
"scripts": {
"postinstall": "cd ../util && npm i && cd ../api && npm i && cd ../cdn && npm i && cd ../gateway && npm i",
"build": "npm run build:api && npm run build:cdn && npm run build:gateway && npm run build:bundle",
- "build:bundle": "npx typescript -b .",
+ "build:bundle": "npx tsc -b .",
"build:api": "cd ../api/ && npm run build",
"build:cdn": "cd ../cdn/ && npm run build",
"build:gateway": "cd ../gateway/ && npm run build",
diff --git a/cdn/package.json b/cdn/package.json
index 73a8c2b5..083fbf5b 100644
--- a/cdn/package.json
+++ b/cdn/package.json
@@ -6,7 +6,7 @@
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
- "build": "npx typescript -b .",
+ "build": "npx tsc -b .",
"start": "npm run build && node dist/start.js"
},
"repository": {
diff --git a/gateway/package.json b/gateway/package.json
index 541df1cb..e55ebe30 100644
--- a/gateway/package.json
+++ b/gateway/package.json
@@ -6,7 +6,7 @@
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && node dist/start.js",
- "build": "npx typescript -b .",
+ "build": "npx tsc -b .",
"dev": "tsnd --respawn src/start.ts"
},
"keywords": [],
diff --git a/util/package.json b/util/package.json
index d1867440..d84897dc 100644
--- a/util/package.json
+++ b/util/package.json
@@ -6,7 +6,7 @@
"types": "dist/index.d.ts",
"scripts": {
"postinstall": "npm run build",
- "build": "npx typescript -b ."
+ "build": "npx tsc -b ."
},
"repository": {
"type": "git",
diff --git a/webrtc/package.json b/webrtc/package.json
index 34d88168..041dbbe3 100644
--- a/webrtc/package.json
+++ b/webrtc/package.json
@@ -5,7 +5,7 @@
"main": "index.js",
"scripts": {
"test": "npm run build && node dist/test.js",
- "build": "npx typescript -b .",
+ "build": "npx tsc -b .",
"start": "npm run build && node dist/start.js"
},
"keywords": [],
|