so when I run my app inside a browser, I'm getting...
# javascript
b
so when I run my app inside a browser, I'm getting Uncaught ReferenceError: module is not defined; it looks like this line at the very bottom triggers it:
Copy code
module.exports["kingmaker-tools-ng"] = i
I suppose that's due to the webpack libraryTarget commonjs2; what do I choose instead? Edit: got it, UMD (or the default)
1