blob: a5752bef5002098dc6b3f132b9094b5ec1584358 (
plain) (
tree)
|
|
builddir = .ninja
outdir = ./dist
jsdir = $outdir/js
rule tsc
command = node_modules/.bin/tsc
build $outdir/index.js: tsc | src/index.ts tsconfig.json
rule run
command = node $in
build run: run $outdir/index.js
build run-tap-bpm: run $outdir/index.js tap-bpm
pool = console
|