diff --git a/api/package.json b/api/package.json
index 7b2de011..d2070850 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 tsc -b .",
+ "build": "npx typescript -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 1e6c95c5..5ffd004c 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 tsc -b .",
+ "build:bundle": "npx typescript -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 083fbf5b..73a8c2b5 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 tsc -b .",
+ "build": "npx typescript -b .",
"start": "npm run build && node dist/start.js"
},
"repository": {
diff --git a/gateway/package.json b/gateway/package.json
index e55ebe30..541df1cb 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 tsc -b .",
+ "build": "npx typescript -b .",
"dev": "tsnd --respawn src/start.ts"
},
"keywords": [],
diff --git a/util/package.json b/util/package.json
index d84897dc..d1867440 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 tsc -b ."
+ "build": "npx typescript -b ."
},
"repository": {
"type": "git",
diff --git a/webrtc/package.json b/webrtc/package.json
index 041dbbe3..34d88168 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 tsc -b .",
+ "build": "npx typescript -b .",
"start": "npm run build && node dist/start.js"
},
"keywords": [],
|