I am trying to use SystemJS modules in Visual Studio 2013 with TypeScript, but Visual Studio shows errors.
This is my setting :
- Installed TypeScript Tools for Microsoft Visual Studio 2013 1.8.5.0
- Deleted TypeScript Versions
Project file (VS 2013 does not support tsconfig.json):
<TypeScriptToolsVersion>1.8</TypeScriptToolsVersion> <TypeScriptModuleKind >system</TypeScriptModuleKind> <TypeScriptTarget>es5</TypeScriptTarget>
Here is what I am looking at :
- My project compiles successfully
- AngularJs Browser Successfully Running
- But in Visual Studio I see squiggly lines. After freezing, he says that the expression of the expression is not an assignment or call:

This issue is related to this question , however the answer is "use VS 2015", which is simply not an option for me.
Can I use SystemJS with TypeScript in Visual Studio 2013? It should not be ES6-style modules, only any combination of SystemJS and TypeScript will work. Thanks!
source share