From 6cb8028ec4b0eb395b60fb5edc10087c30abc597 Mon Sep 17 00:00:00 2001 From: KingDarBoja Date: Sat, 28 Mar 2020 12:40:13 -0500 Subject: [PATCH] chore: set minimum node version to 10 --- .circleci/config.yml | 2 +- package.json | 2 +- tsconfig.json | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fea9e8517..563197f1f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,7 +9,7 @@ references: jobs: build: docker: - - image: circleci/node:8 + - image: circleci/node:10 working_directory: ~/repo diff --git a/package.json b/package.json index 04bbf7aec..5bb4f8278 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ }, "description": "Converts your TSLint configuration to the closest reasonable ESLint equivalent.", "engines": { - "node": ">=8.0.0" + "node": ">=10.0.0" }, "dependencies": { "chalk": "3.0.0", diff --git a/tsconfig.json b/tsconfig.json index f6315f0e4..33494aa02 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,7 +4,7 @@ "declaration": true, "esModuleInterop": true, "incremental": true, - "lib": ["es2017"], + "lib": [], "module": "commonjs", "noFallthroughCasesInSwitch": true, "noImplicitAny": true, @@ -19,7 +19,7 @@ "strictFunctionTypes": true, "strictNullChecks": true, "strictPropertyInitialization": true, - "target": "es2015" + "target": "es2018" }, "exclude": ["test/tests/**/*"], "include": ["src/**/*"]