Running into these issues while using a shared mod...
# javascript
g
Running into these issues while using a shared module(mpp) which has ktor-js dependency for javascript target-
Copy code
Module not found: Error: Can't resolve 'text-encoding' 
Module not found: Error: Can't resolve 'abort-controller' 
Module not found: Error: Can't resolve 'utf-8-validate' 
Module not found: Error: Can't resolve 'bufferutil'
Even if I add these dependencies one by one from npm, I run into
fs
not resolved error.
Nevermind, fixed by manually resolving those dependencies using
npm(....)
and also upgraded node to latest stable -
12.14.0
.
g
Hi, how did you solve the missing
fs
dependency?