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