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/**/*"]