Skip to content

Commit 5cb34b1

Browse files
authored
chore: set minimum node version to 10 (#351)
1 parent 6621439 commit 5cb34b1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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:8
12+
- image: circleci/node:10
1313

1414
working_directory: ~/repo
1515

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"description": "Converts your TSLint configuration to the closest reasonable ESLint equivalent.",
99
"engines": {
10-
"node": ">=8.0.0"
10+
"node": ">=10.0.0"
1111
},
1212
"dependencies": {
1313
"chalk": "3.0.0",

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"declaration": true,
55
"esModuleInterop": true,
66
"incremental": true,
7-
"lib": ["es2017"],
7+
"lib": [],
88
"module": "commonjs",
99
"noFallthroughCasesInSwitch": true,
1010
"noImplicitAny": true,
@@ -19,7 +19,7 @@
1919
"strictFunctionTypes": true,
2020
"strictNullChecks": true,
2121
"strictPropertyInitialization": true,
22-
"target": "es2015"
22+
"target": "es2018"
2323
},
2424
"exclude": ["test/tests/**/*"],
2525
"include": ["src/**/*"]

0 commit comments

Comments
 (0)