From 2d49ddf7ab4663629f8661e216ca66b5fad3966d Mon Sep 17 00:00:00 2001 From: Tomoaki Abe Date: Sat, 14 Jul 2018 05:01:14 +0900 Subject: [PATCH] Fix the path of tsc command (#824) Since there is a tsc command below `./node_modules/.bin`, `./node_modules/.bin` has been added to `PATH`. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c037762ba..baa3e770b 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "scripts": { "lint": "eslint index.js", "test": "node test/run.js && npm run test-typings", - "test-typings": "node_modules/typescript/bin/tsc -p tsconfig.json" + "test-typings": "tsc -p tsconfig.json" }, "main": "index", "files": [