Skip to content

Commit

Permalink
update target to ensure compilation does not alter generated code (#34)
Browse files Browse the repository at this point in the history
* reorder compiler options

* update target to ensure compilation does not alter generated code
  • Loading branch information
rochdev authored and mayurkale22 committed Jun 17, 2019
1 parent 8c849a4 commit e11d745
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"pretty": true,
"sourceMap": true,
"strict": true,
"target": "es6",
"strictNullChecks": true,
"noUnusedLocals": true
"target": "esnext"
},
"exclude": [
"node_modules"
Expand Down

0 comments on commit e11d745

Please sign in to comment.