Is there a way to get js errors mapped to kotlin s...
# javascript
s
Is there a way to get js errors mapped to kotlin sources on nodejs?
b
Enable sourceMaps on jscompile task
s
like this?
Copy code
tasks.withType<KotlinJsCompile> {
        kotlinOptions {
            sourceMap = true
        }
    }
b
Yes, or you can do it on platform config with webpackTask dsl
s
This appears to be working 🙂 Thanks
❤️ 1