From 713a0371ddabdb57d21a360f79165b00d347eada Mon Sep 17 00:00:00 2001 From: Djordje Lukic Date: Thu, 11 Jun 2020 10:38:21 +0200 Subject: [PATCH] CommonJs is default so no need to specify it to ts-node Signed-off-by: Djordje Lukic --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index fe03a6d..081f6fe 100644 --- a/package.json +++ b/package.json @@ -17,8 +17,8 @@ "test": "jest", "test:watch": "jest --watch", "lint": "eslint src --ext .ts", - "download-protos": "ts-node -O '{\"module\": \"CommonJS\"}' scripts/download-protos.ts", - "example": "ts-node -O '{\"module\": \"CommonJS\"}'" + "download-protos": "ts-node scripts/download-protos.ts", + "example": "ts-node" }, "prettier": { "printWidth": 80,