How do I disable the following error in VS2015?
TS1219 Experimental support for decorators is a feature that is subject to change in a future release. Specify '--experimentalDecorators' to remove this warning.

I'm trying to use Angular2 annotations. I tried adding the following manually to the project file with no luck:
<TypeScriptExperimentalDecorators>True</TypeScriptExperimentalDecorators>
I've also install the TypeScript 1.5.0 beta extension.

Upgrade your IDE to the latest version. Then create tsconfig.json file at the root of your project if you don't already have one. Then add
experimentalDecoratorsas a compiler option.Example: