@@ -91,42 +91,22 @@ lazy val webappCommon = (crossProject(JSPlatform, JVMPlatform) in file("webapp-c
9191 */
9292lazy val slinkyUtils = (project in file(" slinky-utils" ))
9393 .configure(baseLibSettings, baseWebSettings)
94- .configure(_.enablePlugins(ScalaJSPlugin , ScalaJSBundlerPlugin , ScalablyTypedConverterGenSourcePlugin ))
94+ .configure(_.enablePlugins(ScalaJSPlugin , ScalaJSBundlerPlugin ))
9595 .dependsOn(webappCommon.js)
9696 .settings(
9797 name := " slinky-utils" ,
9898 Test / fork := false , // sjs needs this to run tests
99- stTypescriptVersion := " 3.9.3" ,
10099 useYarn := true ,
101- stFlavour := Flavour .Slinky ,
102- Compile / stMinimize := Selection .All ,
103- stOutputPackage := " net.wiringbits.webapp.utils.slinkyUtils" ,
104- stIgnore ++= List (
105- " react-proxy" ,
106- " @mui/material" ,
107- " @mui/icons-material" ,
108- " @mui/joy" ,
109- " @emotion/react" ,
110- " @emotion/styled" ,
111- " react-router" ,
112- " react-router-dom"
113- ),
114100 Compile / npmDependencies ++= Seq (
115101 " react" -> " 18.2.0" ,
116102 " react-dom" -> " 18.2.0" ,
117- " csstype" -> " 2.6.11" ,
118- " react-proxy" -> " 1.1.8" ,
119103 " @mui/material" -> " 5.11.16" ,
120104 " @mui/icons-material" -> " 5.11.16" ,
121105 " @mui/joy" -> " 5.0.0-alpha.74" ,
122106 " @emotion/react" -> " 11.10.6" ,
123107 " @emotion/styled" -> " 11.10.6" ,
124108 " react-router" -> " 5.1.2" ,
125109 " react-router-dom" -> " 5.1.2"
126- ),
127- Compile / npmDevDependencies ++= Seq (
128- " @types/react" -> " 18.0.33" ,
129- " @types/react-dom" -> " 18.0.11"
130110 )
131111 )
132112
0 commit comments