James Ward
02/13/2024, 11:02 PMCompileError: WebAssembly.Module(): supertype count of 1732 exceeds internal limit of 1 @+366
It works when I do:
rootProject.the<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension>().apply {
//nodeVersion = "21.6.1"
nodeVersion = "21.0.0-v8-canary202309143a48826a08"
nodeDownloadBaseUrl = "<https://nodejs.org/download/v8-canary>"
}
tasks.withType<org.jetbrains.kotlin.gradle.targets.js.npm.tasks.KotlinNpmInstallTask>().configureEach {
args.add("--ignore-engines")
}
But wondering if there is a better way than the canary version. Or can I avoid node?eygraber
02/14/2024, 12:00 AM