Skip to content

Commit fe0cf17

Browse files
author
Josh Goldberg
authored
Lowered minimum Node version to 8 (#268)
1 parent 893c9b3 commit fe0cf17

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ references:
99
jobs:
1010
build:
1111
docker:
12-
- image: circleci/node:latest
12+
- image: circleci/node:8
1313

1414
working_directory: ~/repo
1515

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The `tslint-to-eslint-config` command reads in any existing linter, TypeScript,
3232
For any TSLint rules with corresponding ESLint equivalents, those equivalents will be used in the new configuration.
3333
TSLint rules without ESLint equivalents will be wrapped with [eslint-plugin-tslint](https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin-tslint).
3434

35-
> Requires Node 12+ (LTS)
35+
> Requires Node 8+ (LTS)
3636
3737
### CLI Flags
3838

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"strictFunctionTypes": true,
2020
"strictNullChecks": true,
2121
"strictPropertyInitialization": true,
22-
"target": "esnext"
22+
"target": "es2015"
2323
},
2424
"exclude": ["test/tests/**/*"]
2525
}

0 commit comments

Comments
 (0)