[K/JS] Introduce v2015 target

This commit is contained in:
Artem Kobzar
2024-03-06 12:21:38 +00:00
committed by Space Team
parent e989e6d397
commit 77f0cba23f
19 changed files with 115 additions and 84 deletions
@@ -19,10 +19,10 @@ package org.jetbrains.kotlin.js.config;
import org.jetbrains.annotations.NotNull;
public enum EcmaVersion {
v3, v5;
es5, es2015;
@NotNull
public static EcmaVersion defaultVersion() {
return v5;
return es5;
}
}