You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I include ColorPickerModule in my app.module.ts. I get this error.
index.ts?c7fd:1 Uncaught SyntaxError: Unexpected token export at Object.157 (app.js:190) at __webpack_require__ (polyfills.js:51) at eval (eval at 156 (app.js:183), <anonymous>:5:10) at Object.156 (app.js:183) at __webpack_require__ (polyfills.js:51) at eval (eval at 98 (app.js:22), <anonymous>:14:31) at Object.98 (app.js:22) at __webpack_require__ (polyfills.js:51) at Object.eval (eval at 75 (app.js:15), <anonymous>:6:20) at eval (eval at 75 (app.js:15), <anonymous>:31:30) at Object.75 (app.js:15) at __webpack_require__ (polyfills.js:51) at Object.0 (app.js:7) at __webpack_require__ (polyfills.js:51) at webpackJsonpCallback (polyfills.js:22) at app.js:1
The text was updated successfully, but these errors were encountered:
It's because this package is published with the .ts files, and that's bad. If this is done, you'll have to add it to the includes paths in webpack. Packages should be published with only .js and .d.ts files.
When I include ColorPickerModule in my app.module.ts. I get this error.
index.ts?c7fd:1 Uncaught SyntaxError: Unexpected token export at Object.157 (app.js:190) at __webpack_require__ (polyfills.js:51) at eval (eval at 156 (app.js:183), <anonymous>:5:10) at Object.156 (app.js:183) at __webpack_require__ (polyfills.js:51) at eval (eval at 98 (app.js:22), <anonymous>:14:31) at Object.98 (app.js:22) at __webpack_require__ (polyfills.js:51) at Object.eval (eval at 75 (app.js:15), <anonymous>:6:20) at eval (eval at 75 (app.js:15), <anonymous>:31:30) at Object.75 (app.js:15) at __webpack_require__ (polyfills.js:51) at Object.0 (app.js:7) at __webpack_require__ (polyfills.js:51) at webpackJsonpCallback (polyfills.js:22) at app.js:1
The text was updated successfully, but these errors were encountered: