Skip to content

Commit

Permalink
add commonjs to target
Browse files Browse the repository at this point in the history
  • Loading branch information
dankogai committed Aug 10, 2020
1 parent c50124a commit 77d4992
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ all: $(PJ) $(JS)
$(JS): $(PJ) $(TS)
tsc -d --target es6 $(TS)

commonjs: $(PJ) $(TS)
tsc --module commonjs --target es6 $(TS)

test: $(PJ) $(JS)
mocha --require esm

Expand Down

0 comments on commit 77d4992

Please sign in to comment.