Unverified Commit 3282d93d authored by Alexey Tsvetkov's avatar Alexey Tsvetkov Committed by GitHub

Enable JS target for Intellij sync (#397)

parent d5f664e1
......@@ -212,10 +212,10 @@ internal val Project.isInIdea: Boolean
}
val Project.supportNative: Boolean
get() = (properties.get("skiko.native.enabled") == "true") || isInIdea
get() = findProperty("skiko.native.enabled") == "true" || isInIdea
val Project.supportWasm: Boolean
get() = properties.get("skiko.wasm.enabled") == "true"
get() = findProperty("skiko.wasm.enabled") == "true" || isInIdea
kotlin {
jvm {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment