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:
parent
564e8995c7
commit
06860cc3fe
12 changed files with 96 additions and 16 deletions
12
Makefile
Normal file
12
Makefile
Normal 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 $@
|
||||
Loading…
Add table
Add a link
Reference in a new issue