objs = vopamoi.js

all: $(objs)

.PHONY: all clean

%.js: %.ts
	tsc --strict --target ES2020 $<

clean:
	-rm $(objs)