I am writing TypeScript in a solution folder as a solution item. TypeScript will be processed by a task defined in gulp and placed at the proper position within the web project, so that 'ts' files are not included.
When trying to work with 'amd' and 'es6' features, Visual Studio IntelliSense doesn't understand those features unless specific flags are set like '--target' and '--module', the issue here is that I am not working within a project.
I was thinking to fix this to set specific TypeScript flags at global level.
So I started to look at the file 'Microsoft.TypeScript.Default.props' in folder 'C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\TypeScript' and applied specific flag settings, but unfortunately this does not fix the issue.
Does anyone know how to apply TypeScript flags at global (default) level?