Merge pull request #725 from murgatroid99/grpc-js_higher_ts_target

Target grpc-js build at a higher ES standard
This commit is contained in:
Michael Lumish 2019-02-04 15:13:25 -08:00 committed by GitHub
commit 5e7f25fc75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -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",