fix: target es2018 to support node 10+

This commit is contained in:
M. George Hansen 2020-05-26 16:29:43 -07:00
parent 0a609a4539
commit c83937ed96
6 changed files with 34 additions and 10 deletions

View file

@ -5,8 +5,8 @@
"moduleResolution": "node",
"jsx": "react",
"jsxFactory": "createElement",
"target": "ES2019",
"lib": ["ES2019"],
"target": "ES2018",
"lib": ["ES2018"],
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,