12 lines
139 B
Makefile
12 lines
139 B
Makefile
|
|
build:
|
|
npx tsc && make fix-decl
|
|
|
|
watch:
|
|
npx tsc-watch --onSuccess "make fix-decl"
|
|
|
|
fix-decl:
|
|
./scripts/fix_decl.sh
|
|
|
|
clean:
|
|
rm -rf lib
|