angular - Error executing tsc on ngconf2015demo - missing tsd.d.ts -


trying setup angular2 visual studio 2015rc on windows, , following todomvc application demo ng-conf 2015 instructions, point tsd reinstall produces following output:

c:\...>tsd reinstall >> tsd 0.5.7 -> running reinstall >> written 1 file:     - angular2/angular2.d.ts 

and creates typings folder, thing in above angular2/angular2.d.ts

the contents of tsd.json is:

{   "version": "v4",   "repo": "borisyankov/definitelytyped",   "ref": "master",   "path": "typings",   "bundle": "typings/tsd.d.ts",   "installed": {     "angular2/angular2.d.ts": {       "commit": "b3834d886a95789e6ab56e8244775ec10c5293d0"     }   } } 

so when try execute next command, per demo setup steps tsc, error:

c:\...> tsc error ts6053: file 'typings/tsd.d.ts' not found. 

what doing wrong, causes file not expected?

a.) update tsd please npm update tsd -g.

b.) reinstall , save tsd.d.ts need use save option : https://github.com/definitelytyped/tsd#reinstall-definitions

tsd reinstall -so


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -