Skip to content

Commit 622e53b

Browse files
committedNov 20, 2020
chore!: target Node.js 10+
1 parent 4a8fd44 commit 622e53b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@
5555
"singleQuote": true
5656
},
5757
"engines": {
58-
"node": ">= 8.9"
58+
"node": ">= 10.0"
5959
}
6060
}

‎tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"outDir": "dist",
55
"declaration": true,
66
"sourceMap": false,
7-
"target": "ES2019",
7+
"target": "ES2018",
88
"module": "commonjs",
99
"moduleResolution": "node",
1010
"allowJs": false,
@@ -16,7 +16,7 @@
1616
"esModuleInterop": true,
1717
"removeComments": false,
1818
"jsx": "preserve",
19-
"lib": ["ES2019", "DOM"],
19+
"lib": ["ES2018", "DOM"],
2020
"types": ["jest", "jscodeshift", "node"],
2121
"rootDir": "."
2222
}

0 commit comments

Comments
 (0)
Please sign in to comment.