a3ad03d1ad
The comment in serialization.js/build.gradle.kts is not needed because such dependency cannot be introduced accidentally, since Gradle does not support cycles in module dependencies.
18 lines
379 B
Kotlin
18 lines
379 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:ir.psi2ir"))
|
|
api(project(":compiler:ir.serialization.common"))
|
|
api(project(":js:js.frontend"))
|
|
implementation(project(":compiler:ir.backend.common"))
|
|
|
|
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
}
|