Merge pull request #2361 from AndrewADev/allow-es6-syntax

Allow Using ES6 Syntax
This commit is contained in:
Ian Gilman 2023-05-30 14:24:34 -07:00 committed by GitHub
commit c69950c6e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,11 +6,11 @@
"plugin:compat/recommended"
],
"env": {
"es6": false,
"es6": true,
"browser": true
},
"parserOptions": {
"ecmaVersion": 5,
"ecmaVersion": 6,
"sourceType": "script",
"ecmaFeatures": {
"globalReturn": false,