TypeScript error TS1005: ';' expected
- 如果你使用的是低版本 的 version (1.0.3.0). tsc --version 你的版本应该设置到 2.5.2
- 你在 linux, OSX , 去检查你的 安装目录的所在地 用 : which tsc 并且移除它。
Try uninstalling the "global" typescript:
Installing as part of a local dev dependency of your project
npm install typescript --save-dev
Execute it from the root of your project
./node_modules/.bin/tsc
windows :
Remove C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.0
directory. Now
安装最新的版本:
npm install -g typescript
!!!!重新尝试.
所有评论(0)