FizzBuzz with TypeScript

This commit is contained in:
Oliver Davies 2022-09-24 00:49:23 +01:00
commit 4e2e0d6f0c
7 changed files with 2236 additions and 0 deletions

View file

@ -0,0 +1,14 @@
default:
just --list
clean:
rm *.js -f
compile: clean
tsc *.ts
test: compile
jest *.test.js
test-watch:
ls *.ts | entr -r just test