From ea254dfc628fc8eebd2a15bbddd42c87e943e4fd Mon Sep 17 00:00:00 2001 From: cjihrig Date: Wed, 29 May 2019 15:22:18 -0400 Subject: [PATCH] grpc-js: enable incremental compiles This commit enables incremental TypeScript builds. --- packages/grpc-js/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/grpc-js/tsconfig.json b/packages/grpc-js/tsconfig.json index fd18bad0..e47c5eea 100644 --- a/packages/grpc-js/tsconfig.json +++ b/packages/grpc-js/tsconfig.json @@ -5,7 +5,8 @@ "rootDir": ".", "outDir": "build", "target": "es2017", - "module": "commonjs" + "module": "commonjs", + "incremental": true }, "include": [ "src/*.ts",