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" "plugin:compat/recommended"
], ],
"env": { "env": {
"es6": false, "es6": true,
"browser": true "browser": true
}, },
"parserOptions": { "parserOptions": {
"ecmaVersion": 5, "ecmaVersion": 6,
"sourceType": "script", "sourceType": "script",
"ecmaFeatures": { "ecmaFeatures": {
"globalReturn": false, "globalReturn": false,