DIRS := $(shell ls -d src/*)
ifndef VERBOSE
.SILENT:
endif
all:
for dir in $(DIRS); do \
echo "\n"; \
pnpm tsx $$dir/index.ts; \
done
echo "All Typescripts examples executed.\n"