From a235829bc7722361d2832ba9298077c514ffab8f Mon Sep 17 00:00:00 2001 From: murgatroid99 Date: Thu, 31 Jan 2019 17:33:37 -0800 Subject: [PATCH] Target grpc-js build at a higher ES standard --- packages/grpc-js/tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/grpc-js/tsconfig.json b/packages/grpc-js/tsconfig.json index 807ef662..fd18bad0 100644 --- a/packages/grpc-js/tsconfig.json +++ b/packages/grpc-js/tsconfig.json @@ -1,9 +1,11 @@ { "extends": "./node_modules/gts/tsconfig-google.json", "compilerOptions": { + "lib": ["es2017"], "rootDir": ".", "outDir": "build", - "target": "es6" + "target": "es2017", + "module": "commonjs" }, "include": [ "src/*.ts",