esvit / ng-table

Simple table with sorting and filtering on AngularJS
http://esvit.github.io/ng-table
BSD 3-Clause "New" or "Revised" License
2.77k stars 851 forks source link

Remove @types/angular from dependencies list #977

Open bgoerdt opened 7 years ago

bgoerdt commented 7 years ago

The version of the @types/angular package that is included in the dependencies in the package.json file is conflicting with the version in my TypeScript project. This is creating an error that is preventing me from transpiling.

Please move the package to the devDependencies list, as this comment suggests: https://github.com/Microsoft/TypeScript/issues/9731#issuecomment-232864820

bgoerdt commented 7 years ago

In case anyone else is having this problem, I solved it temporarily by installing rimraf and deleting the @types folder in a post install script in the package.json like so:

"postinstall": "./node_modules/.bin/rimraf.cmd ./node_modules/ng-table/node_modules/@types"

harishrathi commented 7 years ago

+1