I'm on .NET MVC5 (Visual Studio 2015) with Angular 2, and have tried very hard to incorporate kendo angular 2 components, specifically kendo-angular-buttons for the sake of this question.
I've uploaded here - https://github.com/eithneh/KendoAngular2 - a skeleton angular 2 solution that compiles and runs, but breaks when I uncomment
Import { ButtonsModule } from '@progress/kendo-angular-buttons';
in boot.ts.
The errors are multiple, mostly variations on below, and all in d.ts files
TS2300 Duplicate identifier 'readonly' TS1005 '=' expected
I've tried many suggested solutions from similar questions, mostly around toying with typescript version and @angular versions and excludes in tsconfig.json (trying to prevent d.ts files from being compiled per online advice for similar scenarios).
My starting point was to follow instruction here http://www.telerik.com/kendo-angular-ui/getting-started/ to create angular 2 project via angular cli (not .NET) with kendo ui, that worked fine and I then copied relevant bits of packages.json, tsconfig.json and app.ts from there.
Should I give up on angular 2 Kendo UI in .NET MVC5? Can anyone tell me what I'm doing wrong please, or point me to any sample project that works?