Hi guys, i´m trying to export my Kotli.JS code to ...
# javascript
a
Hi guys, i´m trying to export my Kotli.JS code to node module, but, when i tried to check it in a local test project, the module is added correctly but when i execute it, the console shows "MODULE_NOT_FOUND". Any idea? Thanks in advance, My gradle config is the next one:
Copy code
js(IR) {
    useCommonJs()
    browser{
        testTask {
            useKarma {
                useChromeHeadless()
            }
        }
        webpackTask {
            output.libraryTarget = "commonjs"
            output.library = null
        }
    }
    nodejs()
    binaries.executable()
}