Skip to content

Commit

Permalink
feat: add es2023 and es2024 environments (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdjermanovic committed Jun 20, 2023
1 parent 66bc3bc commit 14ddd36
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions conf/environments.js
Expand Up @@ -114,6 +114,18 @@ export default new Map(Object.entries({
ecmaVersion: 13
}
},
es2023: {
globals: { ...newGlobals2015, ...newGlobals2017, ...newGlobals2020, ...newGlobals2021 },
parserOptions: {
ecmaVersion: 14
}
},
es2024: {
globals: { ...newGlobals2015, ...newGlobals2017, ...newGlobals2020, ...newGlobals2021 },
parserOptions: {
ecmaVersion: 15
}
},

// Platforms
browser: {
Expand Down

0 comments on commit 14ddd36

Please sign in to comment.