Skip to content

Commit c1f34a6

Browse files
committed
Support parsing ES2019
1 parent 2ccc13b commit c1f34a6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports = {
1010
es6: true
1111
},
1212
parserOptions: {
13-
ecmaVersion: 2018,
13+
ecmaVersion: 2019,
1414
sourceType: 'module'
1515
},
1616
plugins: [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"xo": "^0.23.0"
5353
},
5454
"peerDependencies": {
55-
"eslint": ">=5.0.0"
55+
"eslint": ">=5.9.0"
5656
},
5757
"ava": {
5858
"failWithoutAssertions": true

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Configure it in `package.json`.
2626
"es6": true
2727
},
2828
"parserOptions": {
29-
"ecmaVersion": 2018,
29+
"ecmaVersion": 2019,
3030
"sourceType": "module"
3131
},
3232
"plugins": [

0 commit comments

Comments
 (0)