“Declaration or statement expected” Error in Angular2 (or TypeScript)

前端 未结 2 1120
悲&欢浪女
悲&欢浪女 2020-12-20 15:42

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?

2条回答
  •  情歌与酒
    2020-12-20 16:30

    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 SDKs\TypeScript\1.5\;
    

提交回复
热议问题