1
0
Fork 0
mirror of https://github.com/demostf/demo.js synced 2026-06-03 16:44:12 +02:00

re-enable es6 output

This commit is contained in:
Robin Appelman 2017-12-09 18:46:00 +01:00
commit d9bfd671d1
2 changed files with 2 additions and 1 deletions

View file

@ -13,6 +13,7 @@ watch: node_modules
.PHONY: build
build: node_modules
node $(tsc)
node $(tsc) -p tsconfig.es6.json
.PHONY: test
test: node_modules

View file

@ -8,7 +8,7 @@
],
"module": "ES6",
"target": "ES6",
"outDir": "build",
"outDir": "build/es6",
"rootDir": "src",
"declaration": true,
"strictNullChecks": true,