Use ttsc instead of tsc

This commit is contained in:
Jerko Steiner 2019-07-31 07:19:22 +08:00
parent 72de6ed106
commit 7dd9497514
4 changed files with 6 additions and 6 deletions

View File

@ -9,10 +9,10 @@ comments:
cp packages/comments-server/build/server.min.js build/comments/
build_ts:
tsc -b packages/
ttsc -b packages/
watch_ts:
tsc --build packages/ --watch --preserveWatchOutput
ttsc --build packages/ --watch --preserveWatchOutput
add:
mkdir packages/$(name)

View File

@ -1,5 +1,5 @@
build:
tsc
ttsc
clean:
rm -rf lib/

View File

@ -1,8 +1,8 @@
build:
tsc
ttsc
esm:
tsc -p tsconfig.esm.json
ttsc -p tsconfig.esm.json
clean:
rm -rf lib/

View File

@ -2,7 +2,7 @@ server := src/bootstrap.ts
typeorm := ts-node ../../node_modules/.bin/typeorm
build:
tsc --build ./
ttsc --build ./
orm:
$typeorm $args