admin管理员组文章数量:1352150
I'm trying to understand why this line invokes an error:
const value = 20 * 30;
error TS1008: Unexpected token; 'module, class, interface, enum, import or statement' expected.
any idea?
I'm trying to understand why this line invokes an error:
const value = 20 * 30;
error TS1008: Unexpected token; 'module, class, interface, enum, import or statement' expected.
any idea?
Share Improve this question edited Dec 22, 2015 at 10:24 MartyIX 28.7k32 gold badges139 silver badges217 bronze badges asked Dec 22, 2015 at 9:59 DustyDusty 3844 silver badges15 bronze badges 6- github./Microsoft/TypeScript/issues/4869 – Hamlet Hakobyan Commented Dec 22, 2015 at 10:10
- Which ECMAScript version are you using ? 5 or 6 ? – Alex Commented Dec 22, 2015 at 10:15
- Please add more details - i.e. TypeScript version and a longer snippet which provides the error. – MartyIX Commented Dec 22, 2015 at 10:20
- Are you using Visual Studio ? If yes, did you update to the latest version of TypeScript (see visualstudiogallery.msdn.microsoft./…) – Alex Commented Dec 22, 2015 at 10:35
- When running tsc version I get : Version 1.0.3.0 and when running where tsc I get: 1.0 and 1.7 versions. I added 1.7 in PATH variables – Dusty Commented Dec 22, 2015 at 10:46
2 Answers
Reset to default 11Here is the solution:
Earlier on my machine I had installed Visual Studio 2015 Pro Edition. that had installed TypeScript 1.0.3.0. and added its path to system environment.
Now I used npm install -g TypeScript
and it did install, however from mand line, typing tsc --version
was always giving 1.0.3.0.
I removed the older path from environment and then restarted code and it worked fine.
Better you check your versions and the solution might help.
It doesn't cause an error for me: https://jsfiddle/n0w1jt7b/
const value = 20 * 30; // 600
Be sure that all your versions are up-to-date.
本文标签:
版权声明:本文标题:javascript - typeScript error 'module, class, interface, enum, import or statement' expected - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743910785a2560361.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论