-
Notifications
You must be signed in to change notification settings - Fork 47
/
build.sbt
30 lines (21 loc) · 908 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
26
27
28
29
30
name := "scala-space"
scalaVersion := "2.12.6"
javacOptions ++= Seq("-Xmx6g")
scalacOptions ++= Seq(
"-deprecation", // Emit warning and location for usages of deprecated APIs.
"-encoding", "utf-8", // Specify character encoding used by source files.
)
enablePlugins(ScalaJSPlugin)
scalaJSUseMainModuleInitializer in Compile := true
scalaJSUseMainModuleInitializer in Test := false
crossTarget in fastOptJS := baseDirectory.value / "js"
crossTarget in fullOptJS := baseDirectory.value / "js"
resolvers +=
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
libraryDependencies ++= Seq(
"org.scala-js" %%% "scalajs-dom" % "0.9.2",
"io.surfkit" %%% "scalajs-google-maps" % "0.0.3-SNAPSHOT",
"io.circe" %%% "circe-core" % "0.9.3",
"io.circe" %%% "circe-parser" % "0.9.3",
"io.circe" %%% "circe-generic" % "0.9.3",
)