1
0
Fork 0
mirror of https://github.com/demostf/demo.js synced 2026-06-04 00:54:14 +02:00

initial typescript conversions

This commit is contained in:
Robin Appelman 2016-12-18 15:36:39 +01:00
commit 06860cc3fe
12 changed files with 96 additions and 16 deletions

12
Makefile Normal file
View file

@ -0,0 +1,12 @@
TS_JS := $(TS_SRC:.ts=.js)
.PHONY: all tsc
all: $(TS_JS)
$(TS_JS): %.js: %.ts js.stub
$(TSLINT) $<
js.stub: $(TS_SRC)
$(TSC) $^
@touch $@