From 59b100965106092f12ecbc1c47fcb7dd47f1b270 Mon Sep 17 00:00:00 2001 From: Matthew Ray Date: Fri, 22 May 2020 01:48:39 -0400 Subject: [PATCH] use npx to access tsc --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6bb691c..ef34253 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ clean: @-rm -rf build build: - -tsc -p ./tsconfig.json + -npx tsc -p ./tsconfig.json run: cd build && node main