[PlatformSourceSetConventionUsedWithoutCorrespondingTarget | WARNING] Source Set Used Without a Corresponding Target
Accessed 'source set jsMain' without the registering the js target:
kotlin {
    js() /* <- register the 'js' target */

    sourceSets.jsMain.dependencies {

    }
}
Please register the js target.
----
[PlatformSourceSetConventionUsedWithoutCorrespondingTarget | WARNING] Source Set Used Without a Corresponding Target
Accessed 'source set jsTest' without the registering the js target:
kotlin {
    js() /* <- register the 'js' target */

    sourceSets.jsTest.dependencies {

    }
}
Please register the js target.
----
[UnusedSourceSetsWarning | WARNING] Unused Kotlin Source Sets
The following Kotlin source sets were configured but not added to any Kotlin compilation:
 * jsMain
 * jsTest
You can add a source set to a target's compilation by connecting it with the compilation's default source set using 'dependsOn'.
See https://kotl.in/connecting-source-sets