I have Maven project with structure:
- common
- server (depends on common) - Kotlin JRE
- client (depends on common) - KotlinJS
- local-server (depends on server & client)
Is there any IntelliJ IDEA configuration for local-server, which will allows me locally debug both server and client?
Such configuration exists for GWT applications -
https://www.jetbrains.com/help/idea/run-debug-configuration-gwt.html
Is there analogue for Kotlin + KotlinJS?