-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.sbt
25 lines (21 loc) · 830 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
enablePlugins(ScalaJSPlugin)
lazy val root = (project in file("."))
.settings(
inThisBuild(List(
organization := "com.mogproject",
scalaVersion := "2.13.2"
)),
name := "mog-playground",
libraryDependencies ++= Seq(
"org.scala-js" %%% "scalajs-dom" % "1.0.0",
"be.doeraene" %%% "scalajs-jquery" % "1.0.0",
"com.lihaoyi" %%% "scalatags" % "0.9.1"
),
scalacOptions in ThisBuild ++= Seq("-unchecked", "-deprecation"),
skip in packageJSDependencies := false,
jsEnv := new org.scalajs.jsenv.jsdomnodejs.JSDOMNodeJSEnv(
org.scalajs.jsenv.jsdomnodejs.JSDOMNodeJSEnv.Config().withArgs(List("--dns-result-order=ipv4first"))
)
)
.dependsOn(mogFrontend)
lazy val mogFrontend = ProjectRef(uri("ssh://git@github.com/mogproject/mog-frontend.git#master"), "root")