17 lines
277 B
Kotlin
17 lines
277 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:util"))
|
|
api(project(":compiler:frontend"))
|
|
api(project(":js:js.frontend"))
|
|
compileOnly(intellijCore())
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|