<lambda>null1plugins { 2 kotlin("multiplatform") 3 id("com.google.devtools.ksp") 4 } 5 6 version = "1.0-SNAPSHOT" 7 <lambda>null8kotlin { 9 js(BOTH) { 10 browser() 11 nodejs() 12 } 13 sourceSets { 14 val commonMain by getting { 15 dependencies { 16 implementation(project(":annotations")) 17 } 18 } 19 } 20 } 21 <lambda>null22dependencies { 23 add("kspCommonMainMetadata", project(":test-processor")) 24 add("kspJs", project(":test-processor")) 25 add("kspJsTest", project(":test-processor")) 26 } 27 <lambda>null28tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> { 29 kotlinOptions.freeCompilerArgs += "-Xuse-deprecated-legacy-compiler" 30 } 31