Skip to content

Commit

Permalink
fix: Instrumentation performance (#747)
Browse files Browse the repository at this point in the history
* fix: Instrumentation performance

* Add lib definition on tsconfig.json

* Add es2018 definition to lib in tsconfig.json
  • Loading branch information
losalex authored Oct 13, 2022
1 parent c5891d8 commit 75daae8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"precompile": "gts clean"
},
"dependencies": {
"@google-cloud/logging": "^10.1.7",
"@google-cloud/logging": "^10.1.11",
"google-auth-library": "^8.0.2",
"lodash.mapvalues": "^4.6.0",
"winston-transport": "^4.3.0"
Expand Down
6 changes: 5 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
"extends": "./node_modules/gts/tsconfig-google.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "build"
"outDir": "build",
"lib": [
"es2018",
"dom"
]
},
"include": [
"src/*.ts",
Expand Down

0 comments on commit 75daae8

Please sign in to comment.