config: make watch:ts output more usable in watch script

This commit is contained in:
Xymorot 2019-12-05 21:03:14 +01:00
parent b672aca7f0
commit 6d680cf5fb
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
"build:index": "node buildfile.js",
"watch:index": "node buildfile.js --watch --dev",
"build:ts": "tsc",
"watch:ts": "tsc -w",
"watch:ts": "tsc -w --pretty --preserveWatchOutput",
"build": "concurrently -c green,yellow,cyan -n webpack,index,typescript \"npm run build:webpack\" \"npm run build:index\" \"npm run build:ts\"",
"watch": "concurrently -c green,yellow,cyan -n webpack,index,typescript \"npm run watch:webpack\" \"npm run watch:index\" \"npm run watch:ts\"",
"test:before": "node tests/setup/before.js",