summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-05-14 01:19:23 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-05-14 01:19:23 -0400
commitbfb3cd7a5c55dbf59eacb7d93e88f38632e47260 (patch)
tree65fdee9c91c262c3ea28eefbd39c8ae257a8e76f /Makefile
parentbe7828684b888a8c9743e6dd7c54c924c076c8e2 (diff)
use tsc for type checking
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5cd8b9c15..6ccc4781d 100644
--- a/Makefile
+++ b/Makefile
@@ -14,6 +14,7 @@ msg.pb.d.ts: msg.pb.js node_modules
./node_modules/.bin/pbts -o msg.pb.d.ts msg.pb.js
dist/main.js: main.ts msg.pb.js msg.pb.d.ts node_modules
+ ./node_modules/.bin/tsc --noEmit # Only for type checking.
./node_modules/.bin/parcel build --out-dir=dist/ --no-minify main.ts
node_modules: