postnummer-app/frontend/Makefile

16 lines
279 B
Makefile
Raw Permalink Normal View History

2023-02-06 18:39:22 +00:00
.PHONY: build watch check clean
build:
esbuild src/main.ts --outfile=bundle.js --minify --sourcemap --bundle
watch:
esbuild src/main.ts --outfile=bundle.js --minify --sourcemap --bundle --watch
check:
tsc --noEmit -p tsconfig.json
clean:
rm -rf bundle.js bundle.js.map