postnummer-app/frontend/Makefile
2023-02-06 19:40:40 +01:00

16 lines
279 B
Makefile

.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