[Web] Add core/compiler.common.web module

Add WebCommonStandardClassIds object to use in JS&Wasm shared code
This commit is contained in:
Svyatoslav Kuzmich
2023-11-21 12:31:35 +01:00
committed by Space Team
parent ec995fc847
commit 910835af2d
7 changed files with 59 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
project.configureJvmToolchain(JdkMajorVersion.JDK_1_8)
dependencies {
api(project(":core:compiler.common"))
}
sourceSets {
"main" { projectDefault() }
"test" {}
}