Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.6k views
in Technique[技术] by (71.8m points)

angular - "Declaration or statement expected" Error in Angular2 (or TypeScript)

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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;

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...