Skip to content

Commit 14ddd36

Browse files
authored
feat: add es2023 and es2024 environments (#116)
1 parent 66bc3bc commit 14ddd36

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

conf/environments.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,18 @@ export default new Map(Object.entries({
114114
ecmaVersion: 13
115115
}
116116
},
117+
es2023: {
118+
globals: { ...newGlobals2015, ...newGlobals2017, ...newGlobals2020, ...newGlobals2021 },
119+
parserOptions: {
120+
ecmaVersion: 14
121+
}
122+
},
123+
es2024: {
124+
globals: { ...newGlobals2015, ...newGlobals2017, ...newGlobals2020, ...newGlobals2021 },
125+
parserOptions: {
126+
ecmaVersion: 15
127+
}
128+
},
117129

118130
// Platforms
119131
browser: {

0 commit comments

Comments
 (0)