Skip to content

Commit

Permalink
refactor(ui): bump tsconfig target
Browse files Browse the repository at this point in the history
The latest version of Chrome, Firefox, Safari, and Edge support ES2017.
  • Loading branch information
chnn committed Aug 2, 2019
1 parent ff51a78 commit e395f0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"compilerOptions": {
"target": "es6",
"target": "es2017",
"module": "esNext",
"moduleResolution": "node",
"lib": ["es2017", "dom", "webworker"],
"lib": ["es2017", "es2018", "dom", "webworker"],
"skipLibCheck": true,
"isolatedModules": false,
"jsx": "react",
Expand Down

0 comments on commit e395f0e

Please sign in to comment.