Change TypeScript compile target to es6 (#1071)

This allows for the use of Node 6. Note that Node v6 is no longer supported by Node.js (End-of-life'd in April 2019). We recommend updating to Node v8/v10 ASAP, to keep getting security updates and fixes from the Node.js team.
This commit is contained in:
Tyler Levine
2019-11-05 09:05:48 -08:00
committed by Elliot Lee
parent 0742960ec4
commit 5232f95c3f

View File

@@ -1,7 +1,7 @@
{
"compilerOptions": {
"pretty": true,
"target": "es2017",
"target": "es6",
"module": "commonjs",
"moduleResolution": "node",