Reputation: 23
Aftyer command ng build lib
I got this error message:
Error: Cannot find module 'tsickle/src/tsickle'
I have tried to install npm i tsickle
no effect.
"@angular/core": "^6.0.0"
Ts is:
"typescript": "~2.7.2"
This node_modules\ng-packagr\lib\ngc\create-emit-callback.js
module required the tsicckle
Upvotes: 0
Views: 448
Reputation: 1059
you should install tsickle as dev dependency
npm i --save-dev tsickle
Upvotes: 1