From 959ba62dc77025eeb8a0922df8fa923413537a0b Mon Sep 17 00:00:00 2001 From: etorreborre Date: Sun, 15 Aug 2021 22:26:44 +0200 Subject: [PATCH] project: allow multilines to be matched with ScalaJS for now --- build.sbt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.sbt b/build.sbt index a98b1af703..00aaf517ed 100644 --- a/build.sbt +++ b/build.sbt @@ -63,7 +63,11 @@ lazy val commonSettings = lazy val commonJvmSettings = testJvmSettings + +import org.scalajs.linker.interface.ESVersion + lazy val commonJsSettings = + Seq(scalaJSLinkerConfig ~= { _.withESFeatures(_.withESVersion(ESVersion.ES2018)) }) ++ testJsSettings /** MODULES (sorted in alphabetical order) */