refactor(ui): bump tsconfig target

The latest version of Chrome, Firefox, Safari, and Edge support ES2017.
pull/14551/head
Christopher Henn 2019-07-31 13:34:59 -07:00
parent ff51a78eae
commit e395f0e3a8
1 changed files with 2 additions and 2 deletions

View File

@ -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",