Skip to content

Commit

Permalink
Fix the path of tsc command (#824)
Browse files Browse the repository at this point in the history
Since there is a tsc command below `./node_modules/.bin`,
`./node_modules/.bin` has been added to `PATH`.
  • Loading branch information
abetomo authored and roman-vanesyan committed Jul 13, 2018
1 parent aaa447a commit 2d49ddf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -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": [
Expand Down

0 comments on commit 2d49ddf

Please sign in to comment.