From 41d5d272f53782ceac5f015c3e539b00321b4a96 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 29 Jul 2020 10:01:57 +1000 Subject: [PATCH] use --incremental to speed up builds --- .gitignore | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c53e78898..e0dab0019 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,4 @@ tags proxy.key proxy.pub +tsconfig.tsbuildinfo diff --git a/package.json b/package.json index 40e0fd910..68db98da6 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,7 @@ "tslint": "tslint --format stylish --project .", "format": "prettier --list-different --write `git ls-files --modified *.{css,js,json,scss,ts,tsx}` `git ls-files --modified ./**/*.{css,js,json,scss,ts,tsx}`", "format-full": "prettier --list-different --write \"*.{css,js,json,scss,ts,tsx}\" \"./**/*.{css,js,json,scss,ts,tsx}\"", - "transpile": "tsc", + "transpile": "tsc --incremental", "clean-transpile": "rimraf ts/**/*.js && rimraf ts/*.js", "pow-metrics": "node metrics_app.js localhost 9000", "ready": "yarn clean-transpile && yarn grunt && yarn lint-full && yarn test-node && yarn test-electron && yarn lint-deps"