Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm completely new to Angular2 and TypeScript. I'm following Tutorial but I keep coping this error. Is it an error caused by the compiler or something?

enter image description here

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.7k views
Welcome To Ask or Share your Answers For Others

1 Answer

It looks like you are using an older version of the compiler.

You need to download and install the TypeScript 1.5 beta (or newer) in order to use ES6 style imports and annotations.

You can check the version you currently have installed using:

tsc --version

It should give you Version 1.5.0-beta.

If you already have it installed, perhaps your PATH variable still points to the old folder, so edit your PATH variable to point to the latest folder, i.e.

C:Program Files (x86)Microsoft SDKsTypeScript1.5;

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...