diff --git a/Makefile b/Makefile index 2c33077..0debb02 100644 --- a/Makefile +++ b/Makefile @@ -31,11 +31,13 @@ DEBUG ?= off ifeq ($(DEBUG), on) LDFLAGS := -s -w $(LDFLAGS) SOURCEMAP := --sourcemap + TYPECHECK := tsc -noEmit --project ts/tsconfig.json # jank COPYTS := rm -r $(DATA)/web/js/ts; cp -r ts $(DATA)/web/js else SOURCEMAP := COPYTS := + TYPECHECK := endif npm: @@ -59,6 +61,7 @@ email: python3 scripts/compile_mjml.py -o $(DATA)/ typescript: + $(TYPECHECK) $(info compiling typescript) -mkdir -p $(DATA)/web/js -$(ESBUILD) --bundle ts/admin.ts $(SOURCEMAP) --outfile=./$(DATA)/web/js/admin.js --minify diff --git a/ts/tsconfig.json b/ts/tsconfig.json index 3b3b207..4bdf020 100644 --- a/ts/tsconfig.json +++ b/ts/tsconfig.json @@ -3,7 +3,7 @@ "outDir": "../js", "target": "es6", "lib": ["dom", "es2017"], - "typeRoots": ["./typings", "./node_modules/@types"], + "typeRoots": ["./typings", "../node_modules/@types"], "moduleResolution": "node", "esModuleInterop": true }