janvladimirmostert
06/14/2020, 8:56 PMjs(IR) {
browser {
dceTask {
keep(
...
)
}
binaries.executable()
}
}
Locally this project seems to be using ES6 modules
import ChatMessageList from './chat-message-list';
When i auto import Kotlin classes, it does this
import ApplicationState = module_name.com.domain.ApplicationState;
this compiles, but does not work when i run the html file with the generated JS
i can see the generated KotlinJS in the Parceble js output, but it seems the KotlinJS is using a different module system or something, i'm not very familiar with TypeScript and NPM yetdazza5000
06/15/2020, 11:07 PMjanvladimirmostert
06/16/2020, 3:45 PM