Skip to content

Commit

Permalink
feat: change default target to es2016
Browse files Browse the repository at this point in the history
BREAKING CHANGE: since we no longer support Node 4.x, we can default
to the target ES2016.

Fixes: google#147
  • Loading branch information
ofrobots committed Apr 23, 2018
1 parent 69feca0 commit f3ddd0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tsconfig-google.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": ["es2015"],
"lib": ["es2016"],
"module": "commonjs",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"pretty": true,
"sourceMap": true,
"strict": true,
"target": "es5"
"target": "es2016"
},
"exclude": [
"node_modules"
Expand Down

0 comments on commit f3ddd0c

Please sign in to comment.