Skip to content

Commit

Permalink
feat: use esnext targets for downleveling and modules. (#966)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRosenwasser authored and yyx990803 committed Mar 9, 2018
1 parent 179033d commit ba5a375
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"target": "<%- options.useTsWithBabel ? 'es2015' : 'es5' %>",
"module": "es2015",
"target": "<%- options.useTsWithBabel ? 'esnext' : 'es5' %>",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"moduleResolution": "node",
Expand Down

0 comments on commit ba5a375

Please sign in to comment.